Commit 77416b3d by Aldy Hernandez Committed by Aldy Hernandez

mips.c (mips_legitimate_address_p): Check for CONST_INT in last patch.

        * config/mips/mips.c	(mips_legitimate_address_p): Check for
        CONST_INT in last patch.

From-SVN: r44736
parent 86557ec2
2001-08-09 Aldy Hernandez <aldyh@redhat.com>
* config/mips/mips.c (mips_legitimate_address_p): Check for
CONST_INT in last patch.
2001-08-08 Anthony Green <green@redhat.com>
* java/class.c (emit_register_classes): Use assemble_jcr if
......
......@@ -1368,8 +1368,9 @@ mips_legitimate_address_p (mode, xinsn, strict)
in "la x, foo(x)" yielding the wrong result for:
(set (blah:DI) (plus x y)). */
&& (!TARGET_64BIT
|| trunc_int_for_mode (INTVAL (xplus1),
SImode) == INTVAL (xplus1))
|| (code1 == CONST_INT
&& trunc_int_for_mode (INTVAL (xplus1),
SImode) == INTVAL (xplus1)))
&& !TARGET_MIPS16)
return 1;
}
......
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