Commit ad241351 by Richard Kenner

(assign_parms): Do all conversions in CONVERSION_INSNS.

From-SVN: r9992
parent 8a0c27ee
......@@ -3631,9 +3631,10 @@ assign_parms (fndecl, second_time)
rtx tempreg = gen_reg_rtx (GET_MODE (entry_parm));
emit_move_insn (tempreg, validize_mem (entry_parm));
tempreg = convert_to_mode (nominal_mode, tempreg, unsignedp);
push_to_sequence (conversion_insns);
tempreg = convert_to_mode (nominal_mode, tempreg, unsignedp);
expand_assignment (parm,
make_tree (nominal_type, tempreg), 0, 0);
conversion_insns = get_insns ();
......
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