mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-05 21:50:21 +08:00
2011-09-09 Kai Tietz <ktietz@redhat.com>
* peicode.h (pe_ILF_build_a_bfd): Don't remove leading underscore for targets without symbol_leading_char.
This commit is contained in:
@ -884,7 +884,11 @@ pe_ILF_build_a_bfd (bfd * abfd,
|
||||
if (import_name_type != IMPORT_NAME)
|
||||
{
|
||||
char c = symbol[0];
|
||||
if (c == '_' || c == '@' || c == '?')
|
||||
|
||||
/* Check that we don't remove for targets with empty
|
||||
USER_LABEL_PREFIX the leading underscore. */
|
||||
if ((c == '_' && abfd->xvec->symbol_leading_char != 0)
|
||||
|| c == '@' || c == '?')
|
||||
symbol++;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user