(expand_inline_function): Handle a PARALLEL containing a RETURN the

same as a RETURN.

From-SVN: r13533
This commit is contained in:
Richard Kenner 1997-01-19 20:54:40 -05:00
parent 4bfe969bc7
commit 299b54ba04

View File

@ -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 ();