]> gcc.gnu.org Git - gcc.git/commitdiff
(rtx_renumbered_equal_p, case CONST_INT): Use INTVAL, not XINT.
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 29 Sep 1993 22:35:15 +0000 (18:35 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 29 Sep 1993 22:35:15 +0000 (18:35 -0400)
From-SVN: r5534

gcc/jump.c

index c4799101e0ea82d8a4af4260a65be86e903ea963..7b8094ccdf4467463c60651a1130b16d337186c4 100644 (file)
@@ -3771,7 +3771,7 @@ rtx_renumbered_equal_p (x, y)
       return 0;
 
     case CONST_INT:
-      return XINT (x, 0) == XINT (y, 0);
+      return INTVAL (x) == INTVAL (y);
 
     case LABEL_REF:
       /* We can't assume nonlocal labels have their following insns yet.  */
This page took 0.077619 seconds and 5 git commands to generate.