* rtlanal.c (may_trap_p): Simplify an integer comparison.

From-SVN: r70761
This commit is contained in:
Kazu Hirata 2003-08-24 09:02:32 +00:00 committed by Kazu Hirata
parent 791996d16d
commit 30c3267cef
2 changed files with 5 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2003-08-24 Kazu Hirata <kazu@cs.umass.edu>
* rtlanal.c (may_trap_p): Simplify an integer comparison.
2003-08-24 Nathanael Nerode <neroden@gcc.gnu.org> 2003-08-24 Nathanael Nerode <neroden@gcc.gnu.org>
* fixinc/inclhack.def (AAB_svr4_replace_byteorder): Enhance * fixinc/inclhack.def (AAB_svr4_replace_byteorder): Enhance

View File

@ -2388,9 +2388,7 @@ may_trap_p (rtx x)
|| (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT || (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT
&& flag_trapping_math)) && flag_trapping_math))
return 1; return 1;
/* This was const0_rtx, but by not using that, if (XEXP (x, 1) == const0_rtx)
we can link this file into other programs. */
if (GET_CODE (XEXP (x, 1)) == CONST_INT && INTVAL (XEXP (x, 1)) == 0)
return 1; return 1;
break; break;