about summary refs log tree commit diff
path: root/arch/mips64/atomic_arch.h
Commit message (Collapse)AuthorAgeFilesLines
* correct pointer types for a_ll_p and a_sc_p primitives on mips64Rich Felker2016-03-111-4/+4
| | | | | | | | these changes should not affect generated code, but they reflect that the underlying objects operated on by a_cas_p are supposed to have type volatile void *, not volatile long. in theory a compiler could treat the effective type mismatch in the "m" memory operands as undefined behavior.
* make mips64 a_sc_p atomic primitive's asm constraints work with clangRich Felker2016-03-111-1/+1
| | | | | | | apparently clang does not accept matching-register input and output constraints that differ in size (32-bit vs 64-bit). based on patch by Jaydeep Patil.
* add mips64 portRich Felker2016-03-061-0/+50
patch by Mahesh Bodapati and Jaydeep Patil of Imagination Technologies.