* i386.c (legitimize_pic_address): Fix splitting of PLUS with
huge offset.
From-SVN: r87697
+2004-09-18 Jan Hubicka <jh@suse.cz>
+
+ * i386.c (legitimize_pic_address): Fix splitting of PLUS with
+ huge offset.
+
2004-09-18 Kaz Kojima <kkojima@gcc.gnu.org>
* config/sh/linux.h (ASM_PREFERRED_EH_DATA_FORMAT): Remove.
{
if (INTVAL (op1) < -16*1024*1024
|| INTVAL (op1) >= 16*1024*1024)
- new = gen_rtx_PLUS (Pmode, op0, force_reg (Pmode, op1));
+ new = gen_rtx_PLUS (Pmode, force_reg (Pmode, op0), op1);
}
}
else