Commit f8acdd3c by Dimitrios Apostolou Committed by Jason Merrill

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
parent fe860eb5
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> 2011-11-14 Kai Tietz <ktietz@redhat.com>
* gcov.c (generate_results): Add missing semicolon and * gcov.c (generate_results): Add missing semicolon and
...@@ -125,9 +125,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see ...@@ -125,9 +125,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
} \ } \
while (0) 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 /* Output the label which precedes a jumptable. Note that for all svr4
systems where we actually generate jumptables (which is to say every systems where we actually generate jumptables (which is to say every
svr4 target except i386, where we use casesi instead) we put the jump- svr4 target except i386, where we use casesi instead) we put the jump-
......
...@@ -7633,19 +7633,6 @@ default_elf_asm_output_ascii (FILE *f, const char *s, unsigned int len) ...@@ -7633,19 +7633,6 @@ default_elf_asm_output_ascii (FILE *f, const char *s, unsigned int len)
} }
#endif #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_init_array_section;
static GTY(()) section *elf_fini_array_section; static GTY(()) section *elf_fini_array_section;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment