diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-18 03:24:53 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-18 03:24:53 +0000 |
commit | 707ff8b16a66b8bbb1995fc8f4bb9127f1ccfb31 (patch) | |
tree | d5602a9380e9d435ec805a405cf3d2606a5aa4c2 /gcc/expr.h | |
parent | 1119ba4774f184ee34f214580be630309af652de (diff) | |
download | gcc-707ff8b16a66b8bbb1995fc8f4bb9127f1ccfb31.tar.gz |
* calls.c (prepare_call_address): New parameter SIBCALLP. If true,
don't force the function address into a register.
(expand_call, emit_library_call_value_1): Update callers.
* builtins.c (expand_builtin_apply): Likewise.
* expr.h (prepare_call_address): Update decl.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44095 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.h')
-rw-r--r-- | gcc/expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.h b/gcc/expr.h index f43b08ca291..ed79d99d05b 100644 --- a/gcc/expr.h +++ b/gcc/expr.h @@ -1112,7 +1112,7 @@ extern rtx trampoline_address PARAMS ((tree)); in its original home. This becomes invalid if any more code is emitted. */ extern rtx hard_function_value PARAMS ((tree, tree, int)); -extern rtx prepare_call_address PARAMS ((rtx, tree, rtx *, int)); +extern rtx prepare_call_address PARAMS ((rtx, tree, rtx *, int, int)); extern rtx expand_call PARAMS ((tree, rtx, int)); |