diff options
| author | Lang Hames <lhames@gmail.com> | 2018-10-01 04:59:10 +0000 |
|---|---|---|
| committer | Lang Hames <lhames@gmail.com> | 2018-10-01 04:59:10 +0000 |
| commit | deb3640d951054569351b976a2113ff58b07fd99 (patch) | |
| tree | 06d3ff99e4d80f308b4138ac6c956f57dae7813d /llvm/include/llvm/ExecutionEngine/Orc/Core.h | |
| parent | b6f4d445f07b0a8ddb25f1be8d511d60cde05c37 (diff) | |
| download | bcm5719-llvm-deb3640d951054569351b976a2113ff58b07fd99.tar.gz bcm5719-llvm-deb3640d951054569351b976a2113ff58b07fd99.zip | |
[ORC] Pass Symbols to ExecutionSession::lookup by value, potentially saving a
copy.
llvm-svn: 343442
Diffstat (limited to 'llvm/include/llvm/ExecutionEngine/Orc/Core.h')
| -rw-r--r-- | llvm/include/llvm/ExecutionEngine/Orc/Core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/Orc/Core.h b/llvm/include/llvm/ExecutionEngine/Orc/Core.h index 50c73ab0f4c..24742b10920 100644 --- a/llvm/include/llvm/ExecutionEngine/Orc/Core.h +++ b/llvm/include/llvm/ExecutionEngine/Orc/Core.h @@ -740,7 +740,7 @@ public: /// dependenant symbols for this query (e.g. it is being made by a top level /// client to get an address to call) then the value NoDependenciesToRegister /// can be used. - void lookup(const JITDylibList &JDs, const SymbolNameSet &Symbols, + void lookup(const JITDylibList &JDs, SymbolNameSet Symbols, SymbolsResolvedCallback OnResolve, SymbolsReadyCallback OnReady, RegisterDependenciesFunction RegisterDependencies); |

