* jump.c (rtx_renumbered_equal_p): Special case CODE_LABEL.
From-SVN: r24725
This commit is contained in:
parent
c65ef754ee
commit
bba596a397
@ -1,3 +1,7 @@
|
||||
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)
|
||||
|
||||
* Makefile.in (cppulp.o): Add dependencies.
|
||||
|
@ -4431,6 +4431,10 @@ rtx_renumbered_equal_p (x, y)
|
||||
case SYMBOL_REF:
|
||||
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:
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user