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/passes.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/passes.c')
-rw-r--r-- | gcc/passes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/passes.c b/gcc/passes.c index 24a2d23..f70cb85 100644 --- a/gcc/passes.c +++ b/gcc/passes.c @@ -556,7 +556,7 @@ rest_of_handle_machine_reorg (tree decl, rtx insns) timevar_push (TV_MACH_DEP); open_dump_file (DFI_mach, decl); - (*targetm.machine_dependent_reorg) (); + targetm.machine_dependent_reorg (); close_dump_file (DFI_mach, print_rtl, insns); timevar_pop (TV_MACH_DEP); @@ -2086,7 +2086,7 @@ rest_of_compilation (tree decl) timevar_pop (TV_FINAL); - if ((*targetm.binds_local_p) (current_function_decl)) + if (targetm.binds_local_p (current_function_decl)) { int pref = cfun->preferred_stack_boundary; if (cfun->recursive_call_emit |