diff options
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 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); } |