OSDN Git Service

* varasm.c (default_assemble_visibility): Rename from
authoramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 8 Sep 2002 09:30:21 +0000 (09:30 +0000)
committeramodra <amodra@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 8 Sep 2002 09:30:21 +0000 (09:30 +0000)
assemble_visibility.
* output.h: Here too.
* target-def.h (TARGET_ASM_ASSEMBLE_VISIBILITY): And here.
* config/rs6000/rs6000.c (rs6000_assemble_visibility): And here.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@56948 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/rs6000.c
gcc/output.h
gcc/target-def.h
gcc/varasm.c

index e063de6..fb6d451 100644 (file)
@@ -1,5 +1,13 @@
 2002-09-08  Alan Modra  <amodra@bigpond.net.au>
 
 2002-09-08  Alan Modra  <amodra@bigpond.net.au>
 
+       * varasm.c (default_assemble_visibility): Rename from
+       assemble_visibility.
+       * output.h: Here too.
+       * target-def.h (TARGET_ASM_ASSEMBLE_VISIBILITY): And here.
+       * config/rs6000/rs6000.c (rs6000_assemble_visibility): And here.
+
+2002-09-08  Alan Modra  <amodra@bigpond.net.au>
+
        * reload.c (find_reloads <p constraint>): Pass operand_mode to
        find_reloads_address.
 
        * reload.c (find_reloads <p constraint>): Pass operand_mode to
        find_reloads_address.
 
index 5f66c58..85d6dbe 100644 (file)
@@ -8168,7 +8168,7 @@ rs6000_assemble_visibility (decl, visibility_type)
      tree decl;
      const char *visibility_type;
 {
      tree decl;
      const char *visibility_type;
 {
-  assemble_visibility (decl, visibility_type);
+  default_assemble_visibility (decl, visibility_type);
 
   /* Functions need to have their entry point symbol visibility set as
      well as their descriptor symbol visibility.  */
 
   /* Functions need to have their entry point symbol visibility set as
      well as their descriptor symbol visibility.  */
index bbacd31..af469ac 100644 (file)
@@ -258,7 +258,7 @@ extern void assemble_constant_align PARAMS ((tree));
 
 extern void assemble_alias             PARAMS ((tree, tree));
 
 
 extern void assemble_alias             PARAMS ((tree, tree));
 
-extern void assemble_visibility                PARAMS ((tree, const char *));
+extern void default_assemble_visibility        PARAMS ((tree, const char *));
 
 /* Output a string of literal assembler code
    for an `asm' keyword used between functions.  */
 
 /* Output a string of literal assembler code
    for an `asm' keyword used between functions.  */
index 939502f..53b29a9 100644 (file)
@@ -59,7 +59,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 #endif
 
 #ifndef TARGET_ASM_ASSEMBLE_VISIBILITY
 #endif
 
 #ifndef TARGET_ASM_ASSEMBLE_VISIBILITY
-#define TARGET_ASM_ASSEMBLE_VISIBILITY assemble_visibility
+#define TARGET_ASM_ASSEMBLE_VISIBILITY default_assemble_visibility
 #endif
 
 #define TARGET_ASM_FUNCTION_PROLOGUE default_function_pro_epilogue
 #endif
 
 #define TARGET_ASM_FUNCTION_PROLOGUE default_function_pro_epilogue
index d950d94..49df302 100644 (file)
@@ -4597,7 +4597,7 @@ assemble_alias (decl, target)
    VISIBILITY_TYPE.  */
 
 void
    VISIBILITY_TYPE.  */
 
 void
-assemble_visibility (decl, visibility_type)
+default_assemble_visibility (decl, visibility_type)
      tree decl;
      const char *visibility_type ATTRIBUTE_UNUSED;
 {
      tree decl;
      const char *visibility_type ATTRIBUTE_UNUSED;
 {