diff options
author | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-07 00:19:27 +0000 |
---|---|---|
committer | amodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-07 00:19:27 +0000 |
commit | 2532673e387f0bb25b2944591844e0f1e05b14d1 (patch) | |
tree | 5de5ac5f72323e7b1a2c867059483f6f69c4f135 /gcc/varasm.c | |
parent | 260fbc4e954607050fd2243efec279de51369f77 (diff) | |
download | gcc-2532673e387f0bb25b2944591844e0f1e05b14d1.tar.gz |
* doc/tm.texi (TARGET_ASM_ASSEMBLE_VISIBILITY): Describe.
* target-def.h (TARGET_ASM_ASSEMBLE_VISIBILITY): Define.
(TARGET_ASM_OUT): Add the above here.
* target.h (struct gcc_target): Add "visibility" field.
* varasm.c (maybe_assemble_visibility): Call targetm visibility func.
* config/rs6000/rs6000.c (rs6000_assemble_visibility): New function.
(TARGET_ASM_ASSEMBLE_VISIBILITY): Define.
(rs6000_legitimize_reload_address, first_reg_to_save): Formatting.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56906 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 216e1441216..2d214a0f065 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -4624,7 +4624,7 @@ maybe_assemble_visibility (decl) { const char *type = TREE_STRING_POINTER (TREE_VALUE (TREE_VALUE (visibility))); - assemble_visibility (decl, type); + (* targetm.asm_out.visibility) (decl, type); } } |