[PATCH] D83935: [llvm-readobj] - Move out the common code from printRelocations() methods.
James Henderson via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 21 01:47:01 PDT 2020
jhenderson added inline comments.
================
Comment at: llvm/tools/llvm-readobj/ELFDumper.cpp:3636-3647
+void GNUStyle<ELFT>::printRelReloc(const ELFO *Obj, unsigned SecIndex,
+ const Elf_Shdr *SymTab, const Elf_Rel &R,
+ unsigned RelIndex) {
+ printRelRelaReloc(Obj, SecIndex, SymTab, R, RelIndex);
+}
+
+template <class ELFT>
----------------
It seems to me like this pair of functions (and the equivalent LLVM pair) is unnecessary. You should be able to call `printRelRelaReloc` directly.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D83935/new/
https://reviews.llvm.org/D83935
More information about the llvm-commits
mailing list