Commit f72a8759 by Richard Kenner

(expand_inline_function): Add missing call to force_operand when

getting structure_value_addr into reg.

From-SVN: r12303
parent 5556bc5b
......@@ -1599,7 +1599,8 @@ expand_inline_function (fndecl, parms, target, ignore, type,
if (GET_CODE (XEXP (loc, 0)) == REG)
{
temp = force_reg (Pmode, structure_value_addr);
temp = force_reg (Pmode,
force_operand (structure_value_addr, NULL_RTX));
map->reg_map[REGNO (XEXP (loc, 0))] = temp;
if ((CONSTANT_P (structure_value_addr)
|| (GET_CODE (structure_value_addr) == PLUS
......
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