* gcse.c (expr_equiv_p): Replace expressions that are known to
be 0 with 0.
From-SVN: r68601
+2003-06-27 Kazu Hirata <kazu@cs.umass.edu>
+
+ * gcse.c (expr_equiv_p): Replace expressions that are known to
+ be 0 with 0.
+
2003-06-27 Kazu Hirata <kazu@cs.umass.edu>
* cse.c (fold_rtx): Replace the equality comparison of INTVALs
return 1;
if (x == 0 || y == 0)
- return x == y;
+ return 0;
code = GET_CODE (x);
if (code != GET_CODE (y))
{
case PC:
case CC0:
- return x == y;
-
case CONST_INT:
- return INTVAL (x) == INTVAL (y);
+ return 0;
case LABEL_REF:
return XEXP (x, 0) == XEXP (y, 0);