Commit 27e486c5 by Kaveh R. Ghazi Committed by Kaveh Ghazi

* combine.c (make_extraction): Fix error in last change.

From-SVN: r50533
parent a4334c36
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> 2002-03-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* c4x.c (c4x_fp_reglist): Const-ify. * c4x.c (c4x_fp_reglist): Const-ify.
......
...@@ -6033,7 +6033,7 @@ make_extraction (mode, inner, pos, pos_rtx, len, ...@@ -6033,7 +6033,7 @@ make_extraction (mode, inner, pos, pos_rtx, len,
return new; return new;
if (GET_CODE (new) == CONST_INT) 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 /* If we know that no extraneous bits are set, and that the high
bit is not set, convert the extraction to the cheaper of bit is not set, convert the extraction to the cheaper of
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment