m68k.c (output_andsi3): Fix signed/unsigned comparison warning.
* config/m68k/m68k.c (output_andsi3): Fix signed/unsigned comparison warning. From-SVN: r75412
This commit is contained in:
parent
ca9bc441e4
commit
d7b3c08535
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
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)
|
||||
|
|
Loading…
Add table
Reference in a new issue