fix broken constraints for powerpc atomic cas asm
authorRich Felker <dalias@aerifal.cx>
Sat, 19 Jul 2014 16:19:20 +0000 (12:19 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 28 Jul 2014 04:28:00 +0000 (00:28 -0400)
commitb1d89d48aa8b52d0e5b918750b047e139a637178
treecd304dce45021a30566d0647d437e5b987449724
parent1431b29888eb22057fe7e441082015ea3c2f1e7a
fix broken constraints for powerpc atomic cas asm

the register constraint for the address to be accessed did not convey
that the asm can access the pointed-to object. as far as the compiler
could tell, the result of the asm was just a pure function of the
address and the values passed in, and thus the asm could be hoisted
out of loops or omitted entirely if the result was not used.

(cherry picked from commit 7fdae458bd421046a300a69dcb32953ac9450136)
arch/powerpc/atomic.h