mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-01 18:32:32 +08:00
2006-01-27 Paul Brook <paul@codesourcery.com>
* elf32-arm.c (elf32_arm_get_symbol_type): Allow STT_TLS thumb objects.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2006-01-27 Paul Brook <paul@codesourcery.com>
|
||||||
|
|
||||||
|
* elf32-arm.c (elf32_arm_get_symbol_type): Allow STT_TLS thumb
|
||||||
|
objects.
|
||||||
|
|
||||||
2006-01-18 Alexandre Oliva <aoliva@redhat.com>
|
2006-01-18 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
Introduce TLS descriptors for i386 and x86_64.
|
Introduce TLS descriptors for i386 and x86_64.
|
||||||
|
@ -5371,7 +5371,7 @@ elf32_arm_get_symbol_type (Elf_Internal_Sym * elf_sym, int type)
|
|||||||
This allows us to distinguish between data used by Thumb instructions
|
This allows us to distinguish between data used by Thumb instructions
|
||||||
and non-data (which is probably code) inside Thumb regions of an
|
and non-data (which is probably code) inside Thumb regions of an
|
||||||
executable. */
|
executable. */
|
||||||
if (type != STT_OBJECT)
|
if (type != STT_OBJECT && type != STT_TLS)
|
||||||
return ELF_ST_TYPE (elf_sym->st_info);
|
return ELF_ST_TYPE (elf_sym->st_info);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user