Commit d7b3c085 by Bernardo Innocenti Committed by Bernardo Innocenti

m68k.c (output_andsi3): Fix signed/unsigned comparison warning.

	* config/m68k/m68k.c (output_andsi3): Fix signed/unsigned comparison
	warning.

From-SVN: r75412
parent ca9bc441
2004-01-05 Bernardo Innocenti <bernie@develer.com>
* config/m68k/m68k.c (output_andsi3): Fix signed/unsigned comparison
warning.
2004-01-04 Nathanael Nerode <neroden@gcc.gnu.org>
* configure.ac: Use AC_PROG_CPP_WERROR.
......
......@@ -3281,7 +3281,7 @@ output_andsi3 (rtx *operands)
{
int logval;
if (GET_CODE (operands[2]) == CONST_INT
&& (INTVAL (operands[2]) | 0xffff) == 0xffffffff
&& (INTVAL (operands[2]) | 0xffff) == (HOST_WIDE_INT)0xffffffff
&& (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