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
This commit is contained in:
parent
fe860eb519
commit
f8acdd3c52
3 changed files with 7 additions and 16 deletions
|
@ -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
|
||||
|
|
|
@ -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-
|
||||
|
|
13
gcc/varasm.c
13
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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue