* combine.c (make_extraction): Fix error in last change.
From-SVN: r50533
This commit is contained in:
parent
a4334c365c
commit
27e486c5d9
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue