Skip to content

Commit f00b9d0

Browse files
committed
Minor Fix
1 parent a738a0f commit f00b9d0

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
@@ -68,7 +68,6 @@ SimpleExecutorDylibManager::lookup(tpctypes::DylibHandle H,
6868
#endif
6969

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

0 commit comments

Comments
 (0)