summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/RuntimeDyld
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2018-01-16 20:39:51 +0000
committerLang Hames <lhames@gmail.com>2018-01-16 20:39:51 +0000
commit4a793c06676feb4f8e27c9f347bf2487670b71cc (patch)
tree49dae43e1284976f418e4e7a24a06879e068f62f /llvm/lib/ExecutionEngine/RuntimeDyld
parentcc64266f53458154225fcf89e41682138628e906 (diff)
downloadbcm5719-llvm-4a793c06676feb4f8e27c9f347bf2487670b71cc.tar.gz
bcm5719-llvm-4a793c06676feb4f8e27c9f347bf2487670b71cc.zip
[ExecutionEngine] Rename JITSymbol::isStrongDefinition to isStrong.
For symmetry with isWeak, isCommon. llvm-svn: 322594
Diffstat (limited to 'llvm/lib/ExecutionEngine/RuntimeDyld')
-rw-r--r--llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
index c5e4dfa1e53..3a025f4c026 100644
--- a/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
+++ b/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
@@ -247,7 +247,7 @@ RuntimeDyldImpl::loadObjectImpl(const object::ObjectFile &Obj) {
// Then check the symbol resolver to see if there's a definition
// elsewhere in this logical dylib.
if (auto Sym = Resolver.findSymbolInLogicalDylib(Name)) {
- if (Sym.getFlags().isStrongDefinition())
+ if (Sym.getFlags().isStrong())
continue;
} else if (auto Err = Sym.takeError())
return std::move(Err);
OpenPOWER on IntegriCloud