[PATCH] D35263: [ELF] - Fix handling of weak symbols from static library when using version script.
Rui Ueyama via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 11 09:38:20 PDT 2017
ruiu added inline comments.
================
Comment at: ELF/Symbols.h:69
+ bool isInCurrentDSO() const {
+ return !isUndefined() && !isShared() && !isLazy();
+ }
----------------
Is this the same as `isDefined()`?
https://reviews.llvm.org/D35263
More information about the llvm-commits
mailing list