* elfread.c (elf_symtab_read): Fix a bug ignoring compiler
generated internal labels ($LM...).
This commit is contained in:
parent
c7e76b5eea
commit
d97d5b48ab
1 changed files with 1 additions and 1 deletions
|
@ -401,7 +401,7 @@ elf_symtab_read (abfd, addr, objfile, dynamic)
|
|||
}
|
||||
else if ((sym->name[0] == '.' && sym->name[1] == 'L')
|
||||
|| ((sym -> flags & BSF_LOCAL)
|
||||
&& sym->name[0] == 'L'
|
||||
&& sym->name[0] == '$'
|
||||
&& sym->name[1] == 'L'))
|
||||
/* Looks like a compiler-generated label. Skip it.
|
||||
The assembler should be skipping these (to keep
|
||||
|
|
Loading…
Add table
Reference in a new issue