aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-decl.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/c-decl.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/c-decl.c')
-rw-r--r--gcc/c-decl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c
index 50ea380..46f352b 100644
--- a/gcc/c-decl.c
+++ b/gcc/c-decl.c
@@ -6137,8 +6137,8 @@ c_expand_body_1 (tree fndecl, int nested_p)
if (DECL_STATIC_CONSTRUCTOR (fndecl))
{
if (targetm.have_ctors_dtors)
- (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
- DEFAULT_INIT_PRIORITY);
+ targetm.asm_out.constructor (XEXP (DECL_RTL (fndecl), 0),
+ DEFAULT_INIT_PRIORITY);
else
static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
}
@@ -6146,8 +6146,8 @@ c_expand_body_1 (tree fndecl, int nested_p)
if (DECL_STATIC_DESTRUCTOR (fndecl))
{
if (targetm.have_ctors_dtors)
- (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
- DEFAULT_INIT_PRIORITY);
+ targetm.asm_out.destructor (XEXP (DECL_RTL (fndecl), 0),
+ DEFAULT_INIT_PRIORITY);
else
static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
}