mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-04 22:15:12 +08:00
* elfread.c (elf_symtab_read): Fix a bug ignoring compiler
generated internal labels ($LM...).
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user