From 3e080e22c27f7bddcb4dec4b93b850c92b73f920 Mon Sep 17 00:00:00 2001 From: schwab Date: Fri, 3 Sep 2004 08:57:35 +0000 Subject: [PATCH] * config/m68k/m68k.c (output_andsi3): Use -1 instead of (HOST_WIDE_INT)0xffffffff since CONST_INT value are always sign extended. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87031 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 6 ++++++ gcc/config/m68k/m68k.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a9c847e..da4164b 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 088714c..dd469c3 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) -- 2.7.4