Commit bba596a3 by Richard Henderson Committed by Richard Henderson

* jump.c (rtx_renumbered_equal_p): Special case CODE_LABEL.

From-SVN: r24725
parent c65ef754
Sun Jan 17 21:04:31 1999 Richard Henderson <rth@cygnus.com>
* jump.c (rtx_renumbered_equal_p): Special case CODE_LABEL.
Sun Jan 17 19:23:20 1999 Jeffrey A Law (law@cygnus.com) Sun Jan 17 19:23:20 1999 Jeffrey A Law (law@cygnus.com)
* Makefile.in (cppulp.o): Add dependencies. * Makefile.in (cppulp.o): Add dependencies.
......
...@@ -4431,6 +4431,10 @@ rtx_renumbered_equal_p (x, y) ...@@ -4431,6 +4431,10 @@ rtx_renumbered_equal_p (x, y)
case SYMBOL_REF: case SYMBOL_REF:
return XSTR (x, 0) == XSTR (y, 0); return XSTR (x, 0) == XSTR (y, 0);
case CODE_LABEL:
/* If we didn't match EQ equality above, they aren't the same. */
return 0;
default: default:
break; break;
} }
......
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