[PATCH] D88817: [llvm-readobj/elf] - Ignore the hash table when on EM_S390/EM_ALPHA platforms.
Fangrui Song via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 8 09:05:29 PDT 2020
MaskRay added inline comments.
================
Comment at: llvm/tools/llvm-readobj/ELFDumper.cpp:2669
+ if (Dumper.getHashTableEntSize() == 8) {
+ auto It = llvm::find_if(ElfMachineType, [&](const EnumEntry<unsigned> &E) {
+ return E.Value == Obj.getHeader().e_machine;
----------------
Can It be at the end of ElfMachineType?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88817/new/
https://reviews.llvm.org/D88817
More information about the llvm-commits
mailing list