readelf: Add printing for STT_GNU_IFUNC

This commit is contained in:
Daniel Bertalan 2022-03-13 09:27:41 +01:00 committed by Andreas Kling
parent 7aca408993
commit 484f70fb43
Notes: sideshowbarker 2024-07-17 11:25:19 +09:00

View File

@ -152,6 +152,8 @@ static char const* object_symbol_type_to_string(ElfW(Word) type)
return "FILE";
case STT_TLS:
return "TLS";
case STT_GNU_IFUNC:
return "IFUNC";
case STT_LOPROC:
return "LOPROC";
case STT_HIPROC: