diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/combine.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 31bee57..e386b75 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-03-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * combine.c (make_extraction): Fix error in last change. + 2002-03-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * c4x.c (c4x_fp_reglist): Const-ify. 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 |
