Commit b3b15f14 by Philip Blundell Committed by Richard Earnshaw

From Phil Blundell:

* arm.c (arm_reload_in_hi): Invert sense of test on BYTES_BIG_ENDIAN.

From-SVN: r27607
parent 6ed30148
Sat Jun 19 05:40:07 1999 Philip Blundell <pb@nexus.co.uk>
* arm.c (arm_reload_in_hi): Invert sense of test on BYTES_BIG_ENDIAN.
Sat Jun 19 05:25:05 1999 Richard Earnshaw (rearnsha@arm.com)
* arm.h (CONDITIONAL_REGISTER_USAGE): If flag_pic, never use
......
......@@ -3711,7 +3711,7 @@ arm_reload_in_hi (operands)
gen_rtx_MEM (QImode,
plus_constant (base,
offset + 1))));
if (BYTES_BIG_ENDIAN)
if (! BYTES_BIG_ENDIAN)
emit_insn (gen_rtx_SET (VOIDmode, gen_rtx_SUBREG (SImode, operands[0], 0),
gen_rtx_IOR (SImode,
gen_rtx_ASHIFT
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment