diff options
author | Lang Hames <lhames@gmail.com> | 2015-12-04 02:15:39 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2015-12-04 02:15:39 +0000 |
commit | 51540fbf420fb65bfdf0173a08ea951e10cf431f (patch) | |
tree | bb95272b62d2f30a6b116f0c84ca8697e4fd825f /tools | |
parent | d8def4abd185c430d7649be9347778612c296871 (diff) |
[Orc] Rename JITCompileCallbackManagerBase to JITCompileCallbackManager.
This class is turning into a useful interface, rather than an implementation
detail, so I'm dropping the 'Base' suffix.
No functional change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254693 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lli/OrcLazyJIT.cpp | 2 | ||||
-rw-r--r-- | tools/lli/OrcLazyJIT.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/lli/OrcLazyJIT.cpp b/tools/lli/OrcLazyJIT.cpp index 7d79c48559e..edac10b8655 100644 --- a/tools/lli/OrcLazyJIT.cpp +++ b/tools/lli/OrcLazyJIT.cpp @@ -52,7 +52,7 @@ OrcLazyJIT::createCompileCallbackMgr(Triple T) { default: return nullptr; case Triple::x86_64: { - typedef orc::JITCompileCallbackManager<orc::OrcX86_64> CCMgrT; + typedef orc::LocalJITCompileCallbackManager<orc::OrcX86_64> CCMgrT; return llvm::make_unique<CCMgrT>(0); } } diff --git a/tools/lli/OrcLazyJIT.h b/tools/lli/OrcLazyJIT.h index ec86a72efaa..bb4da33ea9b 100644 --- a/tools/lli/OrcLazyJIT.h +++ b/tools/lli/OrcLazyJIT.h @@ -29,7 +29,7 @@ namespace llvm { class OrcLazyJIT { public: - typedef orc::JITCompileCallbackManagerBase CompileCallbackMgr; + typedef orc::JITCompileCallbackManager CompileCallbackMgr; typedef orc::ObjectLinkingLayer<> ObjLayerT; typedef orc::IRCompileLayer<ObjLayerT> CompileLayerT; typedef std::function<std::unique_ptr<Module>(std::unique_ptr<Module>)> |