mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:51:00 +08:00
re PR target/29114 (ICE when cross-compiling glibc for hppa on a 64bit host)
PR target/29114 * pa.c (emit_move_sequence): Don't split constants with PLUS for modes larger than BITS_PER_WORD. From-SVN: r118993
This commit is contained in:
parent
8637bc38c4
commit
0eab781508
@ -1,3 +1,9 @@
|
||||
2006-11-19 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
PR target/29114
|
||||
* pa.c (emit_move_sequence): Don't split constants with PLUS for modes
|
||||
larger than BITS_PER_WORD.
|
||||
|
||||
2006-11-18 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
PR fortran/27885
|
||||
|
@ -1893,6 +1893,7 @@ emit_move_sequence (rtx *operands, enum machine_mode mode, rtx scratch_reg)
|
||||
because PLUS uses an 11-bit immediate and the insn sequence
|
||||
generated is not as efficient as the one using HIGH/LO_SUM. */
|
||||
if (GET_CODE (operand1) == CONST_INT
|
||||
&& GET_MODE_BITSIZE (mode) <= BITS_PER_WORD
|
||||
&& GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
|
||||
&& !insert)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user