diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a9c847e09c0..da4164b011f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-09-03 Andreas Schwab + + * 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 * Makefile.in (LIB2ADDEHDEP): Add unwind.h and unwind-pe.h. diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index 088714c4a69..dd469c3a7df 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -3213,7 +3213,7 @@ output_andsi3 (rtx *operands) { int logval; 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]) || offsettable_memref_p (operands[0])) && !TARGET_COLDFIRE)