Commit f921c9c9 by David Edelsohn Committed by David Edelsohn

rs6000.c (legitimate_lo_sum_address_p): Remove accidental commit in previous change.

        * config/rs6000/rs6000.c (legitimate_lo_sum_address_p): Remove
        accidental commit in previous change.

From-SVN: r73440
parent ceba9fcb
2003-11-10 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.c (legitimate_lo_sum_address_p): Remove
accidental commit in previous change.
2003-11-10 Fariborz Jahanian <fjahanian@apple.com>
* config/rs6000/rs6000.h (STACK_SIZE_MODE): Add definition.
* config/rs6000/rs6000.h (STACK_SIZE_MODE): Add definition.
* config/rs6000/rs6000.c (reg_or_mem_operand): Add macho-style
address recognition.
(macho_lo_sum_memory_operand): Routine to recognize macho-style
......
......@@ -3232,12 +3232,12 @@ rs6000_emit_set_long_const (rtx dest, HOST_WIDE_INT c1, HOST_WIDE_INT c2)
HOST_WIDE_INT ud1, ud2, ud3, ud4;
ud1 = c1 & 0xffff;
ud2 = (unsigned HOST_WIDE_INT)(c1 & 0xffff0000) >> 16;
ud2 = (c1 & 0xffff0000) >> 16;
#if HOST_BITS_PER_WIDE_INT >= 64
c2 = c1 >> 32;
#endif
ud3 = c2 & 0xffff;
ud4 = (unsigned HOST_WIDE_INT)(c2 & 0xffff0000) >> 16;
ud4 = (c2 & 0xffff0000) >> 16;
if ((ud4 == 0xffff && ud3 == 0xffff && ud2 == 0xffff && (ud1 & 0x8000))
|| (ud4 == 0 && ud3 == 0 && ud2 == 0 && ! (ud1 & 0x8000)))
......
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