From 205a5b45503be8a8e165b0876082801917f7c240 Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Tue, 12 Jun 2001 17:54:39 +0000 Subject: [PATCH] damn me, now it must be correct. From-SVN: r43264 --- gcc/recog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/recog.c b/gcc/recog.c index a73d6d7ccd5..dd5318ba476 100644 --- a/gcc/recog.c +++ b/gcc/recog.c @@ -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), XEXP (x, 1)), 1); + plus_constant (XEXP (x, 0), INTVAL (XEXP (x, 1))), 1); break; case MINUS: if (GET_CODE (XEXP (x, 1)) == CONST_INT -- 2.30.2