mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 15:18:37 +08:00
Remove an accidental commit.
* readelf.c (get_symbol_type): Revert accidental change to detection of thumb function symbols.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2014-07-07 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* readelf.c (get_symbol_type): Revert accidental change to
|
||||||
|
detection of thumb function symbols.
|
||||||
|
|
||||||
2014-07-04 Alan Modra <amodra@gmail.com>
|
2014-07-04 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
* configure.ac: Rename from configure.in.
|
* configure.ac: Rename from configure.in.
|
||||||
|
@ -9297,13 +9297,8 @@ get_symbol_type (unsigned int type)
|
|||||||
default:
|
default:
|
||||||
if (type >= STT_LOPROC && type <= STT_HIPROC)
|
if (type >= STT_LOPROC && type <= STT_HIPROC)
|
||||||
{
|
{
|
||||||
if (elf_header.e_machine == EM_ARM)
|
if (elf_header.e_machine == EM_ARM && type == STT_ARM_TFUNC)
|
||||||
{
|
|
||||||
if (type == STT_ARM_TFUNC)
|
|
||||||
return "THUMB_FUNC";
|
return "THUMB_FUNC";
|
||||||
if (type == STT_ARM_16BIT)
|
|
||||||
return "THUMB_LABEL";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (elf_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
|
if (elf_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
|
||||||
return "REGISTER";
|
return "REGISTER";
|
||||||
|
Reference in New Issue
Block a user