mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-06 15:38:45 +08:00
Revert part of previous patch: Display unknown symbol types in decimal, not hex.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2002-11-07 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* readelf.c (get_symbol_index_type): Revert part of previous
|
||||||
|
patch: Display unknown symbol types in decimal, not hex.
|
||||||
|
|
||||||
2002-11-07 Danny Smith <dannysmith@users.sourceforge.net>
|
2002-11-07 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* dlltool.c (add_excludes): Don't prefix excluded fastcall
|
* dlltool.c (add_excludes): Don't prefix excluded fastcall
|
||||||
|
@ -5529,7 +5529,7 @@ get_symbol_index_type (type)
|
|||||||
else if (type >= SHN_LORESERVE && type <= SHN_HIRESERVE)
|
else if (type >= SHN_LORESERVE && type <= SHN_HIRESERVE)
|
||||||
sprintf (buff, "RSV[0x%04x]", type);
|
sprintf (buff, "RSV[0x%04x]", type);
|
||||||
else
|
else
|
||||||
sprintf (buff, "0x%04x", type);
|
sprintf (buff, "%3d", type);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user