Commit 299b54ba by Richard Kenner

(expand_inline_function): Handle a PARALLEL containing a RETURN the

same as a RETURN.

From-SVN: r13533
parent 4bfe969b
......@@ -1847,7 +1847,9 @@ expand_inline_function (fndecl, parms, target, ignore, type,
break;
case JUMP_INSN:
if (GET_CODE (PATTERN (insn)) == RETURN)
if (GET_CODE (PATTERN (insn)) == RETURN
|| (GET_CODE (PATTERN (insn)) == PARALLEL
&& GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == RETURN))
{
if (local_return_label == 0)
local_return_label = gen_label_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