]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR bootstrap/51094
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Nov 2011 16:55:56 +0000 (16:55 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 14 Nov 2011 16:55:56 +0000 (16:55 +0000)
PR middle-end/51116
* config/elfos.h (TARGET_ASM_INTERNAL_LABEL): Remove.
* varasm.c (default_elf_internal_label): Remove.

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

gcc/ChangeLog
gcc/config/elfos.h
gcc/varasm.c

index 23358a0fc66d2324e5d60916803db6d753c783b7..643d5fa34c2955f23656b14fe2776f712d8917f7 100644 (file)
@@ -1,3 +1,10 @@
+2011-11-14  Dimitrios Apostolou  <jimis@gmx.net>
+
+       PR bootstrap/51094
+       PR middle-end/51116
+       * config/elfos.h (TARGET_ASM_INTERNAL_LABEL): Remove.
+       * varasm.c (default_elf_internal_label): Remove.
+
 2011-11-14  Kai Tietz  <ktietz@redhat.com>
 
        * gcov.c (generate_results): Add missing semicolon and
index 0d883ea0dd7d3baf1fd5aa0c99a8a8634b86da2a..dc68c810f268559dfc7e08a9c3ce8cdaff3785d5 100644 (file)
@@ -125,9 +125,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
     }                                                          \
   while (0)
 
-#undef TARGET_ASM_INTERNAL_LABEL
-#define TARGET_ASM_INTERNAL_LABEL default_elf_internal_label
-
 /* Output the label which precedes a jumptable.  Note that for all svr4
    systems where we actually generate jumptables (which is to say every
    svr4 target except i386, where we use casesi instead) we put the jump-
index 34cc50928a7eafe2dc9f785b6a7d9728a55eed4c..cfbb9ca1f2e42e2b9a64947a2d7129c1eb6cb887 100644 (file)
@@ -7633,19 +7633,6 @@ default_elf_asm_output_ascii (FILE *f, const char *s, unsigned int len)
 }
 #endif
 
-/* Default TARGET_ASM_INTERNAL_LABEL for ELF targets.  */
-
-void
-default_elf_internal_label (FILE *f, const char *prefix,
-                           unsigned long labelno)
-{
-  putc ('.', f);
-  fputs (prefix, f);
-  fprint_ul (f, labelno);
-  putc (':', f);
-  putc ('\n', f);
-}
-
 static GTY(()) section *elf_init_array_section;
 static GTY(()) section *elf_fini_array_section;