Commit 4ee74e29 by Richard Kenner

(expand_call): In inlining case, if BEFORE_CALLS is zero, start

looking at first insn.

From-SVN: r11699
parent 43198be7
...@@ -739,7 +739,8 @@ expand_call (exp, target, ignore) ...@@ -739,7 +739,8 @@ expand_call (exp, target, ignore)
if (stack_arg_under_construction || i >= 0) if (stack_arg_under_construction || i >= 0)
{ {
rtx insn = NEXT_INSN (before_call), seq; rtx insn = before_call ? NEXT_INSN (before_call) : get_insns ();
rtx seq;
/* Look for a call in the inline function code. /* Look for a call in the inline function code.
If OUTGOING_ARGS_SIZE (DECL_SAVED_INSNS (fndecl)) is If OUTGOING_ARGS_SIZE (DECL_SAVED_INSNS (fndecl)) is
......
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