diff options
| author | Lang Hames <lhames@gmail.com> | 2016-10-28 16:52:34 +0000 |
|---|---|---|
| committer | Lang Hames <lhames@gmail.com> | 2016-10-28 16:52:34 +0000 |
| commit | 1a2e656c679ad72dea88a8825760c75ca15f6ea1 (patch) | |
| tree | cb10943d89c8cf9f09002358d8cd4873a12cc19d /llvm/tools/lli/OrcLazyJIT.h | |
| parent | 0241c961e1d2984a730aa7dcdbe68ee7214cf5ce (diff) | |
| download | bcm5719-llvm-1a2e656c679ad72dea88a8825760c75ca15f6ea1.tar.gz bcm5719-llvm-1a2e656c679ad72dea88a8825760c75ca15f6ea1.zip | |
[lli] Pass command line arguments in to the orc-lazy JIT.
This brings the LLI orc-lazy JIT's behavior more closely in-line with LLI's
mcjit bahavior.
llvm-svn: 285413
Diffstat (limited to 'llvm/tools/lli/OrcLazyJIT.h')
| -rw-r--r-- | llvm/tools/lli/OrcLazyJIT.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/lli/OrcLazyJIT.h b/llvm/tools/lli/OrcLazyJIT.h index 80d2de361e8..05319c34548 100644 --- a/llvm/tools/lli/OrcLazyJIT.h +++ b/llvm/tools/lli/OrcLazyJIT.h @@ -167,8 +167,8 @@ private: std::vector<orc::CtorDtorRunner<CODLayerT>> IRStaticDestructorRunners; }; -int runOrcLazyJIT(std::vector<std::unique_ptr<Module>> Ms, int ArgC, - char* ArgV[]); +int runOrcLazyJIT(std::vector<std::unique_ptr<Module>> Ms, + const std::vector<std::string> &Args); } // end namespace llvm |

