diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2002-03-10 17:14:02 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2002-03-10 17:14:02 +0000 |
commit | 27e486c5d9061a637bc6ba1863d74c517f251150 (patch) | |
tree | 02561427c4c8e42253a487572885d7ee23e96577 /gcc/combine.c | |
parent | a4334c365cd5156aedc5f222e40be30781be8a4c (diff) | |
download | gcc-27e486c5d9061a637bc6ba1863d74c517f251150.zip gcc-27e486c5d9061a637bc6ba1863d74c517f251150.tar.gz gcc-27e486c5d9061a637bc6ba1863d74c517f251150.tar.bz2 |
* combine.c (make_extraction): Fix error in last change.
From-SVN: r50533
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index fb344ca..7dc4b29 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -6033,7 +6033,7 @@ make_extraction (mode, inner, pos, pos_rtx, len, return new; if (GET_CODE (new) == CONST_INT) - return trunc_int_for_mode (INTVAL (new), mode); + return GEN_INT (trunc_int_for_mode (INTVAL (new), mode)); /* If we know that no extraneous bits are set, and that the high bit is not set, convert the extraction to the cheaper of |