diff options
author | Jakub Jelinek <jakub@redhat.com> | 2001-11-21 12:13:14 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2001-11-21 12:13:14 +0100 |
commit | 1258ee8070967d846e414cfc231cdb39b5de7c69 (patch) | |
tree | 414698f86b343b20d34cda0513e9b67a6e76c493 /gcc/function.c | |
parent | 83dea45d59b06dc8d99c78e471f97957c54105eb (diff) | |
download | gcc-1258ee8070967d846e414cfc231cdb39b5de7c69.zip gcc-1258ee8070967d846e414cfc231cdb39b5de7c69.tar.gz gcc-1258ee8070967d846e414cfc231cdb39b5de7c69.tar.bz2 |
explow.c (probe_stack_range): Use LCT_NORMAL as second argument to emit_library_call.
* 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.
From-SVN: r47241
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/function.c b/gcc/function.c index 4d38285..065f4ab 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -6319,7 +6319,7 @@ expand_main_function () #endif #ifndef HAS_INIT_SECTION - emit_library_call (gen_rtx_SYMBOL_REF (Pmode, NAME__MAIN), 0, + emit_library_call (gen_rtx_SYMBOL_REF (Pmode, NAME__MAIN), LCT_NORMAL, VOIDmode, 0); #endif } @@ -6545,8 +6545,8 @@ expand_function_start (subr, parms_have_cleanups) fun = XEXP (fun, 0); else abort (); - emit_library_call (profile_function_entry_libfunc, 0, VOIDmode, 2, - fun, Pmode, + emit_library_call (profile_function_entry_libfunc, LCT_NORMAL, VOIDmode, + 2, fun, Pmode, expand_builtin_return_addr (BUILT_IN_RETURN_ADDRESS, 0, hard_frame_pointer_rtx), @@ -6830,8 +6830,8 @@ expand_function_end (filename, line, end_bindings) fun = XEXP (fun, 0); else abort (); - emit_library_call (profile_function_exit_libfunc, 0, VOIDmode, 2, - fun, Pmode, + emit_library_call (profile_function_exit_libfunc, LCT_NORMAL, VOIDmode, + 2, fun, Pmode, expand_builtin_return_addr (BUILT_IN_RETURN_ADDRESS, 0, hard_frame_pointer_rtx), |