m68k.c (output_andsi3): Use -1 instead of (HOST_WIDE_INT)0xffffffff since CONST_INT value are always...
* config/m68k/m68k.c (output_andsi3): Use -1 instead of (HOST_WIDE_INT)0xffffffff since CONST_INT value are always sign extended. From-SVN: r87031
This commit is contained in:
parent
7b3ed47dad
commit
25c99d8f30
@ -1,3 +1,9 @@
|
|||||||
|
2004-09-03 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
|
* config/m68k/m68k.c (output_andsi3): Use -1 instead of
|
||||||
|
(HOST_WIDE_INT)0xffffffff since CONST_INT value are always sign
|
||||||
|
extended.
|
||||||
|
|
||||||
2004-09-02 Jan Beulich <jbeulich@novell.com>
|
2004-09-02 Jan Beulich <jbeulich@novell.com>
|
||||||
|
|
||||||
* Makefile.in (LIB2ADDEHDEP): Add unwind.h and unwind-pe.h.
|
* Makefile.in (LIB2ADDEHDEP): Add unwind.h and unwind-pe.h.
|
||||||
|
@ -3213,7 +3213,7 @@ output_andsi3 (rtx *operands)
|
|||||||
{
|
{
|
||||||
int logval;
|
int logval;
|
||||||
if (GET_CODE (operands[2]) == CONST_INT
|
if (GET_CODE (operands[2]) == CONST_INT
|
||||||
&& (INTVAL (operands[2]) | 0xffff) == (HOST_WIDE_INT)0xffffffff
|
&& (INTVAL (operands[2]) | 0xffff) == -1
|
||||||
&& (DATA_REG_P (operands[0])
|
&& (DATA_REG_P (operands[0])
|
||||||
|| offsettable_memref_p (operands[0]))
|
|| offsettable_memref_p (operands[0]))
|
||||||
&& !TARGET_COLDFIRE)
|
&& !TARGET_COLDFIRE)
|
||||||
|
Loading…
Reference in New Issue
Block a user