diff options
author | Daniel Bertalan <dani@danielbertalan.dev> | 2022-03-13 09:27:41 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-05-01 12:42:01 +0200 |
commit | 484f70fb438187e5e51102f989d52957f11313fb (patch) | |
tree | 3a7e89c490d39b0d597777d695bf0c681edb893d /Userland/Utilities/readelf.cpp | |
parent | 7aca4089935d5ca8256b74e27c2abf1fb6dbdebc (diff) | |
download | serenity-484f70fb438187e5e51102f989d52957f11313fb.zip |
readelf: Add printing for STT_GNU_IFUNC
Diffstat (limited to 'Userland/Utilities/readelf.cpp')
-rw-r--r-- | Userland/Utilities/readelf.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Utilities/readelf.cpp b/Userland/Utilities/readelf.cpp index 09e2bab33f..2d811c4b8d 100644 --- a/Userland/Utilities/readelf.cpp +++ b/Userland/Utilities/readelf.cpp @@ -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: |