[PATCH] D47800: llvm-readobj: fix printing number of relocations in Android packed format.
Peter Collingbourne via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 5 14:40:16 PDT 2018
pcc accepted this revision.
pcc added a comment.
This revision is now accepted and ready to land.
LGTM
================
Comment at: tools/llvm-readobj/ELFDumper.cpp:2644
unsigned Entries = Sec.getEntityCount();
+ std::vector<Elf_Rela> android_relas;
+ if (Sec.sh_type == ELF::SHT_ANDROID_REL ||
----------------
Rename `AndroidRelas` to match the surrounding code.
Repository:
rL LLVM
https://reviews.llvm.org/D47800
More information about the llvm-commits
mailing list