From 5fd9b17875e5e720108ed599b262ad9464576956 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Sat, 20 Mar 2004 04:52:59 +0000 Subject: 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 --- gcc/alias.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/alias.c') diff --git a/gcc/alias.c b/gcc/alias.c index 58ec82d..2c7770d 100644 --- a/gcc/alias.c +++ b/gcc/alias.c @@ -2635,7 +2635,7 @@ mark_constant_function (void) || DECL_IS_PURE (current_function_decl) || TREE_THIS_VOLATILE (current_function_decl) || current_function_has_nonlocal_goto - || !(*targetm.binds_local_p) (current_function_decl)) + || !targetm.binds_local_p (current_function_decl)) return; /* A loop might not return which counts as a side effect. */ -- cgit v1.1