Commit 25c99d8f by Andreas Schwab Committed by Andreas Schwab

m68k.c (output_andsi3): Use -1 instead of (HOST_WIDE_INT)0xffffffff since…

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
parent 7b3ed47d
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>
* Makefile.in (LIB2ADDEHDEP): Add unwind.h and unwind-pe.h.
......
......@@ -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)
......
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