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/varasm.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/varasm.c')
-rw-r--r-- | gcc/varasm.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 6256421455b..a518dd765ae 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -375,7 +375,7 @@ named_section (tree decl, const char *name, int reloc) if (name == NULL) name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl)); - flags = (* targetm.section_type_flags) (decl, name, reloc); + flags = targetm.section_type_flags (decl, name, reloc); /* Sanity check user variables for flag changes. Non-user section flag changes will abort in named_section_flags. @@ -727,7 +727,7 @@ make_decl_rtl (tree decl, const char *asmspec) /* Let the target reassign the RTL if it wants. This is necessary, for example, when one machine specific decl attribute overrides another. */ - (* targetm.encode_section_info) (decl, DECL_RTL (decl), false); + targetm.encode_section_info (decl, DECL_RTL (decl), false); return; } @@ -827,7 +827,7 @@ make_decl_rtl (tree decl, const char *asmspec) such as that it is a function name. If the name is changed, the macro ASM_OUTPUT_LABELREF will have to know how to strip this information. */ - (* targetm.encode_section_info) (decl, DECL_RTL (decl), true); + targetm.encode_section_info (decl, DECL_RTL (decl), true); } /* Make the rtl for variable VAR be volatile. @@ -1013,7 +1013,7 @@ notice_global_symbol (tree decl) char *name; rtx decl_rtl = DECL_RTL (decl); - p = (* targetm.strip_name_encoding) (XSTR (XEXP (decl_rtl, 0), 0)); + p = targetm.strip_name_encoding (XSTR (XEXP (decl_rtl, 0), 0)); name = xstrdup (p); *type = name; @@ -1657,7 +1657,7 @@ assemble_name (FILE *file, const char *name) const char *real_name; tree id; - real_name = (* targetm.strip_name_encoding) (name); + real_name = targetm.strip_name_encoding (name); id = maybe_get_identifier (real_name); if (id) @@ -4204,7 +4204,7 @@ maybe_assemble_visibility (tree decl) enum symbol_visibility vis = DECL_VISIBILITY (decl); if (vis != VISIBILITY_DEFAULT) - (* targetm.asm_out.visibility) (decl, vis); + targetm.asm_out.visibility (decl, vis); } /* Returns 1 if the target configuration supports defining public symbols @@ -4754,7 +4754,7 @@ default_unique_section_1 (tree decl, int reloc, int shlib) plen = strlen (prefix); name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)); - name = (* targetm.strip_name_encoding) (name); + name = targetm.strip_name_encoding (name); nlen = strlen (name); string = alloca (nlen + plen + 1); |