File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
llvm/include/llvm/ExecutionEngine/Orc Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ class EPCDynamicLibrarySearchGenerator : public DefinitionGenerator {
27
27
using SymbolPredicate = unique_function<bool (const SymbolStringPtr &)>;
28
28
using AddAbsoluteSymbolsFn = unique_function<Error(JITDylib &, SymbolMap)>;
29
29
30
- // / Create a DynamicLibrarySearchGenerator that searches for symbols in the
31
- // / library with the given handle.
30
+ // / Create an EPCDynamicLibrarySearchGenerator that searches for symbols in
31
+ // / the library with the given handle.
32
32
// /
33
33
// / If the Allow predicate is given then only symbols matching the predicate
34
34
// / will be searched for. If the predicate is not given then all symbols will
@@ -44,8 +44,9 @@ class EPCDynamicLibrarySearchGenerator : public DefinitionGenerator {
44
44
AddAbsoluteSymbols (std::move(AddAbsoluteSymbols)) {}
45
45
46
46
// / Permanently loads the library at the given path and, on success, returns
47
- // / a DynamicLibrarySearchGenerator that will search it for symbol definitions
48
- // / in the library. On failure returns the reason the library failed to load.
47
+ // / an EPCDynamicLibrarySearchGenerator that will search it for symbol
48
+ // / definitions in the library. On failure returns the reason the library
49
+ // / failed to load.
49
50
static Expected<std::unique_ptr<EPCDynamicLibrarySearchGenerator>>
50
51
Load (ExecutionSession &ES, const char *LibraryPath,
51
52
SymbolPredicate Allow = SymbolPredicate(),
You can’t perform that action at this time.
0 commit comments