Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lld/COFF/Symbols.cpp')
-rw-r--r--lld/COFF/Symbols.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lld/COFF/Symbols.cpp b/lld/COFF/Symbols.cpp
index 883666e5780b..58eb1908043c 100644
--- a/lld/COFF/Symbols.cpp
+++ b/lld/COFF/Symbols.cpp
@@ -49,7 +49,7 @@ int SymbolBody::compare(SymbolBody *Other) {
if (LK != RK) {
if (RK > LastDefinedKind) {
- if (LK == LazyKind && cast<Undefined>(Other)->getWeakAlias())
+ if (LK == LazyKind && cast<Undefined>(Other)->WeakAlias)
return -1;
// The LHS is either defined or lazy and so it wins.
@@ -121,7 +121,7 @@ int SymbolBody::compare(SymbolBody *Other) {
case UndefinedKind:
// Don't tie, just pick the LHS unless the RHS has a weak alias.
- return cast<Undefined>(Other)->getWeakAlias() ? -1 : 1;
+ return cast<Undefined>(Other)->WeakAlias ? -1 : 1;
case DefinedLocalImportKind:
case DefinedImportThunkKind: