diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-20 16:50:36 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-20 16:50:36 +0000 |
commit | 6fb33aa006ad25bb36d2ebec2ae2de101c63fed6 (patch) | |
tree | 5727d10bba8606030ca18bedde7b44e13e841310 /gcc/c-decl.c | |
parent | 87fb671eaf10aa20ccbf6fa0ad30be59d6cdf583 (diff) | |
download | gcc-6fb33aa006ad25bb36d2ebec2ae2de101c63fed6.tar.gz |
* 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 ().
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@79750 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 50ea380e3f2..46f352b3a62 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); } |