diff options
Diffstat (limited to 'gcc/coverage.c')
-rw-r--r-- | gcc/coverage.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/coverage.c b/gcc/coverage.c index d045d79358c..27643fa6c50 100644 --- a/gcc/coverage.c +++ b/gcc/coverage.c @@ -560,7 +560,7 @@ coverage_end_function (void) static tree build_fn_info_type (unsigned int counters) { - tree type = (*lang_hooks.types.make_type) (RECORD_TYPE); + tree type = lang_hooks.types.make_type (RECORD_TYPE); tree field, fields; tree array_type; @@ -634,7 +634,7 @@ build_fn_info_value (const struct function_list *function, tree type) static tree build_ctr_info_type (void) { - tree type = (*lang_hooks.types.make_type) (RECORD_TYPE); + tree type = lang_hooks.types.make_type (RECORD_TYPE); tree field, fields = NULL_TREE; tree gcov_ptr_type = build_pointer_type (GCOV_TYPE_NODE); tree gcov_merge_fn_type; @@ -744,7 +744,7 @@ build_gcov_info (void) if (prg_ctr_mask & (1 << ix)) n_ctr_types++; - type = (*lang_hooks.types.make_type) (RECORD_TYPE); + type = lang_hooks.types.make_type (RECORD_TYPE); const_type = build_qualified_type (type, TYPE_QUAL_CONST); /* Version ident */ @@ -902,7 +902,7 @@ create_coverage (void) DECL_RESULT (ctor) = build_decl (RESULT_DECL, NULL_TREE, void_type_node); DECL_UNINLINABLE (ctor) = 1; - ctor = (*lang_hooks.decls.pushdecl) (ctor); + ctor = lang_hooks.decls.pushdecl (ctor); rest_of_decl_compilation (ctor, 0, 1, 0); announce_function (ctor); current_function_decl = ctor; |