Commit 587cb682 by Tom Wood

(assign_parms): Provide a safe value for

	DECL_INCOMING_RTL in case of syntax errors.

From-SVN: r2375
parent 29a326c2
......@@ -2676,7 +2676,8 @@ assign_parms (fndecl, second_time)
|| TREE_CODE (parm) != PARM_DECL
|| passed_type == NULL)
{
DECL_RTL (parm) = gen_rtx (MEM, BLKmode, const0_rtx);
DECL_INCOMING_RTL (parm) = DECL_RTL (parm) = gen_rtx (MEM, BLKmode,
const0_rtx);
TREE_USED (parm) = 1;
continue;
}
......
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