summaryrefslogtreecommitdiff
path: root/arch/mips64/atomic_arch.h
AgeCommit message (Collapse)AuthorLines
2016-03-11correct pointer types for a_ll_p and a_sc_p primitives on mips64Rich Felker-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.
2016-03-11make mips64 a_sc_p atomic primitive's asm constraints work with clangRich Felker-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.
2016-03-06add mips64 portRich Felker-0/+50
patch by Mahesh Bodapati and Jaydeep Patil of Imagination Technologies.