diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-12 17:54:39 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-06-12 17:54:39 +0000 |
commit | 19a093aa77efd4ab54d06de3393fae6f6835e573 (patch) | |
tree | e9dbe309e54469ff700db2ab5674610a50a6131b /gcc/recog.c | |
parent | 41922cecc76b67dbf2faf0f0eb22eca15d7ef30f (diff) | |
download | gcc-19a093aa77efd4ab54d06de3393fae6f6835e573.tar.gz |
damn me,
now it must be correct.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43264 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/recog.c')
-rw-r--r-- | gcc/recog.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |