diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-21 11:13:14 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-11-21 11:13:14 +0000 |
commit | 0ba5f96cc686f4da46b64194e6b4a263db930cb5 (patch) | |
tree | 414698f86b343b20d34cda0513e9b67a6e76c493 /gcc/stmt.c | |
parent | 428b059ed7420284e59f1f3b0ff10c59d39315fb (diff) | |
download | ppe42-gcc-0ba5f96cc686f4da46b64194e6b4a263db930cb5.tar.gz ppe42-gcc-0ba5f96cc686f4da46b64194e6b4a263db930cb5.zip |
* explow.c (probe_stack_range): Use LCT_NORMAL as second argument
to emit_library_call.
* function.c (expand_main_function, expand_function_start,
expand_function_end): Likewise.
* profile.c (output_func_start_profiler): Likewise.
* stmt.c (expand_nl_goto_receivers): Use LCT_NORETURN as
second argument to emit_library_call.
* optabs.c (prepare_cmp_insn): Use LCT_CONST_MAKE_BLOCK
as second argument to emit_library_call.
* calls.c (emit_library_call): Update fn_type description.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@47241 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index 52ae097800f..80170020276 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -3740,7 +3740,7 @@ expand_nl_goto_receivers (thisblock) if (any_invalid) { expand_nl_goto_receiver (); - emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "abort"), 0, + emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "abort"), LCT_NORETURN, VOIDmode, 0); emit_barrier (); } |