On 04/30/2012 01:47 AM, Richard Earnshaw wrote:
> + operands[2] = gen_rtx_REG (SImode, REGNO (target) + 1); > + return "ldrexd%?\t%0, %2, %C1"; > + }Use "ldrexd%?\t%0, %H0, %C1", then you don't need to construct operands[2] Otherwise, OK.
Ah, nice. I also fixed the other instance of ldrexd to use %H. r~