Skip to content

Commit 68d85e5

Browse files
committed
Minor Fix
1 parent 7d069b1 commit 68d85e5

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

llvm/include/llvm/ExecutionEngine/Orc/EPCGenericDylibManager.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,13 @@ class EPCGenericDylibManager {
8282
void lookupAsync(tpctypes::DylibHandle H, const RemoteSymbolLookupSet &Lookup,
8383
SymbolLookupCompleteFn Complete);
8484

85-
/// Looks up symbols within the given dylib.
85+
/// Look up and resolve symbols across all available dynamic libraries.
8686
void resolveAsync(const SymbolLookupSet &Lookup,
87-
ResolveSymbolsCompleteFn Complete);
87+
ResolveSymbolsCompleteFn Complete);
8888

89-
/// Looks up symbols within the given dylib.
89+
/// Look up and resolve symbols across all available dynamic libraries.
9090
void resolveAsync(const RemoteSymbolLookupSet &Lookup,
91-
ResolveSymbolsCompleteFn Complete);
91+
ResolveSymbolsCompleteFn Complete);
9292

9393
private:
9494
ExecutorProcessControl &EPC;

llvm/lib/ExecutionEngine/Orc/TargetProcess/SimpleExecutorDylibManager.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ SimpleExecutorDylibManager::lookup(tpctypes::DylibHandle H,
6969
#endif
7070

7171
void *Addr = DL.getAddressOfSymbol(DemangledSymName);
72-
7372
if (!Addr && E.Required)
7473
return make_error<StringError>(Twine("Missing definition for ") +
7574
DemangledSymName,

0 commit comments

Comments
 (0)