aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDimitrios Apostolou <jimis@gmx.net>2011-11-14 16:55:56 +0000
committerJason Merrill <jason@gcc.gnu.org>2011-11-14 11:55:56 -0500
commitf8acdd3c52e497e7139cc19bfa99ca7ac3331850 (patch)
tree955142ce63ee24ff5e4b6b28003d2f138e83dc98 /gcc
parentfe860eb519540be091bcbb9af5e188338ef6ccd8 (diff)
downloadgcc-f8acdd3c52e497e7139cc19bfa99ca7ac3331850.zip
gcc-f8acdd3c52e497e7139cc19bfa99ca7ac3331850.tar.gz
gcc-f8acdd3c52e497e7139cc19bfa99ca7ac3331850.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog7
-rw-r--r--gcc/config/elfos.h3
-rw-r--r--gcc/varasm.c13
3 files changed, 7 insertions, 16 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 23358a0..643d5fa 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/config/elfos.h b/gcc/config/elfos.h
index 0d883ea..dc68c81 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 34cc509..cfbb9ca 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;