]> gcc.gnu.org Git - gcc.git/commitdiff
* recog.c (validate_replace_rtx_1): Fix previous patch.
authorJan Hubicka <jh@suse.cz>
Tue, 12 Jun 2001 17:06:18 +0000 (19:06 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 12 Jun 2001 17:06:18 +0000 (17:06 +0000)
From-SVN: r43263

gcc/ChangeLog
gcc/recog.c

index 17bc7abb108f2940c7c9a30f54bdf8e705c1cd22..5228b4d79762dfd0cdced9dbf94c5a39bb7533d5 100644 (file)
@@ -1,3 +1,7 @@
+Tue Jun 12 19:01:43 CEST 2001  Jan Hubicka  <jh@suse.cz>
+
+       * recog.c (validate_replace_rtx_1): Fix previous patch.
+
 Tue Jun 12 17:25:39 CEST 2001  Jan Hubicka  <jh@suse.cz>
 
        * recog.c (validate_replace_rtx_1): Do plus_constant call always.
index 8da4a8420c7de0ad06a89c42e2e322cc072b161a..a73d6d7ccd5ba6053766ff60ed7511f5e1f0624f 100644 (file)
@@ -512,7 +512,7 @@ validate_replace_rtx_1 (loc, from, to, object)
          separated from this function.  */
       if (GET_CODE (XEXP (x, 1)) == CONST_INT)
        validate_change (object, loc,
-                        plus_constant (XEXP (x, 0), INTVAL (to)), 1);
+                        plus_constant (XEXP (x, 0), XEXP (x, 1)), 1);
       break;
     case MINUS:
       if (GET_CODE (XEXP (x, 1)) == CONST_INT
This page took 0.08259 seconds and 5 git commands to generate.