[PATCH] D26349: [ELF] Convert .got.plt section to input section
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 7 03:29:29 PST 2016
grimar added inline comments.
================
Comment at: ELF/SyntheticSections.h:102
static InterpSection<ELFT> *Interp;
+ static GotPltSection<ELFT> *GotPlt;
};
----------------
Unsorted.
================
Comment at: ELF/Writer.cpp:755
+template <class Range, class T> static void removeElt(Range &R, const T &Val) {
+ R.erase(std::remove(R.begin(), R.end(), Val), R.end());
----------------
Seems you do not use it.
Repository:
rL LLVM
https://reviews.llvm.org/D26349
More information about the llvm-commits
mailing list