diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-03-20 04:52:59 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-03-20 04:52:59 +0000 |
commit | 5fd9b17875e5e720108ed599b262ad9464576956 (patch) | |
tree | 80dae71541c28dcbf4d7456f50781a1d0823bc15 /gcc/calls.c | |
parent | 86e7df90ace6a43c5e641c179431cbd53ea29abe (diff) | |
download | gcc-5fd9b17875e5e720108ed599b262ad9464576956.zip gcc-5fd9b17875e5e720108ed599b262ad9464576956.tar.gz gcc-5fd9b17875e5e720108ed599b262ad9464576956.tar.bz2 |
alias.c, [...]: Replace calls via (*targetm.foo) () with targetm.foo ().
* alias.c, attribs.c, bt-load.c, builtins.c, c-common.c,
c-decl.c, c-objc-common.c, c-typeck.c, calls.c, cfglayout.c,
cse.c, dbxout.c, dwarf2out.c, except.c, final.c,
haifa-sched.c, integrate.c, passes.c, rtlanal.c, sched-rgn.c,
sched-vis.c, simplify-rtx.c, stor-layout.c, tree.c, varasm.c,
vmsdbgout.c: Replace calls via (*targetm.foo) () with
targetm.foo ().
From-SVN: r79729
Diffstat (limited to 'gcc/calls.c')
-rw-r--r-- | gcc/calls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/calls.c b/gcc/calls.c index 04e1671..0d429f6 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -2514,7 +2514,7 @@ expand_call (tree exp, rtx target, int ignore) || structure_value_addr != NULL_RTX /* Check whether the target is able to optimize the call into a sibcall. */ - || !(*targetm.function_ok_for_sibcall) (fndecl, exp) + || !targetm.function_ok_for_sibcall (fndecl, exp) /* Functions that do not return exactly once may not be sibcall optimized. */ || (flags & (ECF_RETURNS_TWICE | ECF_LONGJMP | ECF_NORETURN)) |