Commit d3652c4b by Richard Stallman

(expand_assignment): Always return a result that has the mode of TO.

From-SVN: r4468
parent 0c61c946
...@@ -2197,7 +2197,8 @@ expand_assignment (to, from, want_value, suggest_reg) ...@@ -2197,7 +2197,8 @@ expand_assignment (to, from, want_value, suggest_reg)
preserve_temp_slots (result); preserve_temp_slots (result);
free_temp_slots (); free_temp_slots ();
return result; return convert_to_mode (TYPE_MODE (TREE_TYPE (to)), result,
TREE_UNSIGNED (TREE_TYPE (to)));
} }
/* Ordinary treatment. Expand TO to get a REG or MEM rtx. /* Ordinary treatment. Expand TO to get a REG or MEM rtx.
......
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