From f8acdd3c52e497e7139cc19bfa99ca7ac3331850 Mon Sep 17 00:00:00 2001 From: Dimitrios Apostolou Date: Mon, 14 Nov 2011 16:55:56 +0000 Subject: [PATCH] re PR bootstrap/51094 (Bootstrap failure at revision 181279 on non-ELF targets) PR bootstrap/51094 PR middle-end/51116 * config/elfos.h (TARGET_ASM_INTERNAL_LABEL): Remove. * varasm.c (default_elf_internal_label): Remove. From-SVN: r181355 --- gcc/ChangeLog | 7 +++++++ gcc/config/elfos.h | 3 --- gcc/varasm.c | 13 ------------- 3 files changed, 7 insertions(+), 16 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23358a0fc66..643d5fa34c2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2011-11-14 Dimitrios Apostolou + + 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 * gcov.c (generate_results): Add missing semicolon and diff --git a/gcc/config/elfos.h b/gcc/config/elfos.h index 0d883ea0dd7..dc68c810f26 100644 --- a/gcc/config/elfos.h +++ b/gcc/config/elfos.h @@ -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- diff --git a/gcc/varasm.c b/gcc/varasm.c index 34cc50928a7..cfbb9ca1f2e 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -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;