1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:27:45 +00:00

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

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: