Commit 47c7b4d2 by Kazu Hirata Committed by Kazu Hirata

jump.c (rtx_renumbered_equal_p): Replace an expression that is known to be 0 with 0.

	* jump.c (rtx_renumbered_equal_p): Replace an expression that
	is known to be 0 with 0.

From-SVN: r68602
parent ebd7a7af
2003-06-27 Kazu Hirata <kazu@cs.umass.edu> 2003-06-27 Kazu Hirata <kazu@cs.umass.edu>
* jump.c (rtx_renumbered_equal_p): Replace an expression that
is known to be 0 with 0.
2003-06-27 Kazu Hirata <kazu@cs.umass.edu>
* gcse.c (expr_equiv_p): Replace expressions that are known to * gcse.c (expr_equiv_p): Replace expressions that are known to
be 0 with 0. be 0 with 0.
......
...@@ -2326,10 +2326,8 @@ rtx_renumbered_equal_p (x, y) ...@@ -2326,10 +2326,8 @@ rtx_renumbered_equal_p (x, y)
case CC0: case CC0:
case ADDR_VEC: case ADDR_VEC:
case ADDR_DIFF_VEC: case ADDR_DIFF_VEC:
return 0;
case CONST_INT: case CONST_INT:
return INTVAL (x) == INTVAL (y); return 0;
case LABEL_REF: case LABEL_REF:
/* We can't assume nonlocal labels have their following insns yet. */ /* We can't assume nonlocal labels have their following insns yet. */
......
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