diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/calls.c | 21 |
2 files changed, 24 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f970104..ee83202 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Thu Feb 10 12:56:47 2000 Jim Wilson <wilson@cygnus.com> + + * calls.c (expand_call): When emitting a NOTE_INSN_SETJMP, search for + the CALL_INSN, and emit the note immediately after it. + 2000-02-10 Nick Clifton <nickc@cygnus.com> * config/arm/thumb.md (epilogue): Include a (return) in the diff --git a/gcc/calls.c b/gcc/calls.c index 03261c0..071a89e 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -1602,6 +1602,7 @@ expand_call (exp, target, ignore) or 0 if the function is computed (not known by name). */ tree fndecl = 0; char *name = 0; + rtx before_call; /* Register in which non-BLKmode value will be returned, or 0 if no value or if value is BLKmode. */ @@ -1840,8 +1841,9 @@ expand_call (exp, target, ignore) if (is_integrable) { rtx temp; + #ifdef ACCUMULATE_OUTGOING_ARGS - rtx before_call = get_last_insn (); + before_call = get_last_insn (); #endif temp = expand_inline_function (fndecl, actparms, target, @@ -2383,6 +2385,10 @@ expand_call (exp, target, ignore) /* Perform postincrements before actually calling the function. */ emit_queue (); + /* Save a pointer to the last insn before the call, so that we can + later safely search backwards to find the CALL_INSN. */ + before_call = get_last_insn (); + /* All arguments and registers used for the call must be set up by now! */ /* Generate the actual call instruction. */ @@ -2463,7 +2469,18 @@ expand_call (exp, target, ignore) if (returns_twice) { - emit_note (name, NOTE_INSN_SETJMP); + /* The NOTE_INSN_SETJMP note must be emitted immediately after the + CALL_INSN. Some ports emit more than just a CALL_INSN above, so + we must search for it here. */ + rtx last = get_last_insn (); + while (GET_CODE (last) != CALL_INSN) + { + last = PREV_INSN (last); + /* There was no CALL_INSN? */ + if (last == before_call) + abort (); + } + emit_note_after (NOTE_INSN_SETJMP, last); current_function_calls_setjmp = 1; } |