diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-03-20 04:52:59 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-03-20 04:52:59 +0000 |
commit | 5fd9b17875e5e720108ed599b262ad9464576956 (patch) | |
tree | 80dae71541c28dcbf4d7456f50781a1d0823bc15 /gcc/tree.c | |
parent | 86e7df90ace6a43c5e641c179431cbd53ea29abe (diff) | |
download | gcc-5fd9b17875e5e720108ed599b262ad9464576956.zip gcc-5fd9b17875e5e720108ed599b262ad9464576956.tar.gz gcc-5fd9b17875e5e720108ed599b262ad9464576956.tar.bz2 |
alias.c, [...]: Replace calls via (*targetm.foo) () with targetm.foo ().
* alias.c, attribs.c, bt-load.c, builtins.c, c-common.c,
c-decl.c, c-objc-common.c, c-typeck.c, calls.c, cfglayout.c,
cse.c, dbxout.c, dwarf2out.c, except.c, final.c,
haifa-sched.c, integrate.c, passes.c, rtlanal.c, sched-rgn.c,
sched-vis.c, simplify-rtx.c, stor-layout.c, tree.c, varasm.c,
vmsdbgout.c: Replace calls via (*targetm.foo) () with
targetm.foo ().
From-SVN: r79729
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -303,7 +303,7 @@ make_node_stat (enum tree_code code MEM_STAT_DECL) /* Default to no attributes for type, but let target change that. */ TYPE_ATTRIBUTES (t) = NULL_TREE; - (*targetm.set_default_type_attributes) (t); + targetm.set_default_type_attributes (t); /* We have not yet computed the alias set for this type. */ TYPE_ALIAS_SET (t) = -1; @@ -5131,7 +5131,7 @@ build_common_tree_nodes_2 (int short_double) layout_type (complex_long_double_type_node); { - tree t = (*targetm.build_builtin_va_list) (); + tree t = targetm.build_builtin_va_list (); /* Many back-ends define record types without setting TYPE_NAME. If we copied the record type here, we'd keep the original |