Commit 1f1b0541 by Richard Henderson Committed by Richard Henderson

expr.c (store_expr): When converting a CONST_INT for storage in a SUBREG...

        * expr.c (store_expr): When converting a CONST_INT for storage
        in a SUBREG, convert it to both SUBREG modes before stripping
        the SUBREG.

From-SVN: r46081
parent 6ba3b214
2001-10-08 Richard Henderson <rth@redhat.com>
* expr.c (store_expr): When converting a CONST_INT for storage
in a SUBREG, convert it to both SUBREG modes before stripping
the SUBREG.
2001-10-08 Richard Henderson <rth@redhat.com>
* varasm.c (restore_varasm_status): New.
* function.h: Declare it.
* function.c (pop_function_context_from): Call it.
......
......@@ -4152,9 +4152,13 @@ store_expr (exp, target, want_value)
/* If TEMP is a VOIDmode constant, use convert_modes to make
sure that we properly convert it. */
if (CONSTANT_P (temp) && GET_MODE (temp) == VOIDmode)
temp = convert_modes (GET_MODE (SUBREG_REG (target)),
TYPE_MODE (TREE_TYPE (exp)), temp,
SUBREG_PROMOTED_UNSIGNED_P (target));
{
temp = convert_modes (GET_MODE (target), TYPE_MODE (TREE_TYPE (exp)),
temp, SUBREG_PROMOTED_UNSIGNED_P (target));
temp = convert_modes (GET_MODE (SUBREG_REG (target)),
GET_MODE (target), temp,
SUBREG_PROMOTED_UNSIGNED_P (target));
}
convert_move (SUBREG_REG (target), temp,
SUBREG_PROMOTED_UNSIGNED_P (target));
......
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