[PATCH] D27040: [ELF] - Add support for access to most of synthetic sections from linkerscript.
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 24 09:45:21 PST 2016
ruiu added inline comments.
================
Comment at: ELF/SyntheticSections.cpp:1589-1590
+template <class ELFT> bool VersionTableSection<ELFT>::empty() const {
+ bool HasVerNeed = In<ELFT>::VerNeed->getNeedNum() != 0;
+ return !In<ELFT>::VerDef && !HasVerNeed;
+}
----------------
I don't understand these conditions. Is this the same as the code below?
if (!In<ELFT>::Verdef)
return true;
return In<ELFT>::VerNeed->empty();
https://reviews.llvm.org/D27040
More information about the llvm-commits
mailing list