aboutsummaryrefslogtreecommitdiff
path: root/gcc/cfgcleanup.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-03-20 16:50:36 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-03-20 16:50:36 +0000
commit245f1bfacf4af13a28da3700f110090c20139b4d (patch)
tree5727d10bba8606030ca18bedde7b44e13e841310 /gcc/cfgcleanup.c
parent09b844e33c3f479d9f60b001bcb081521d911629 (diff)
downloadgcc-245f1bfacf4af13a28da3700f110090c20139b4d.zip
gcc-245f1bfacf4af13a28da3700f110090c20139b4d.tar.gz
gcc-245f1bfacf4af13a28da3700f110090c20139b4d.tar.bz2
bb-reorder.c, [...]: Replace calls via (*targetm.foo) () with targetm.foo ().
* bb-reorder.c, bt-load.c, c-decl.c, cfgcleanup.c, coverage.c, dwarf2asm.c, ifcvt.c, stor-layout.c, varasm.c: Replace calls via (*targetm.foo) () with targetm.foo (). From-SVN: r79750
Diffstat (limited to 'gcc/cfgcleanup.c')
-rw-r--r--gcc/cfgcleanup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfgcleanup.c b/gcc/cfgcleanup.c
index 3cde9b2..f40d2c1 100644
--- a/gcc/cfgcleanup.c
+++ b/gcc/cfgcleanup.c
@@ -1751,7 +1751,7 @@ try_optimize_cfg (int mode)
if (mode & (CLEANUP_UPDATE_LIFE | CLEANUP_CROSSJUMP | CLEANUP_THREADING))
clear_bb_flags ();
- if (! (* targetm.cannot_modify_jumps_p) ())
+ if (! targetm.cannot_modify_jumps_p ())
{
first_pass = true;
/* Attempt to merge blocks as made possible by edge removal. If