diff options
| author | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-05-13 21:51:29 +0000 |
|---|---|---|
| committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-05-13 21:51:29 +0000 |
| commit | 8418fdcd5914db7a33e0f44ebd6b3eb1dc09e945 (patch) | |
| tree | 1501b119c1bd4064181b8e204f099338a16f44bc /llvm/include | |
| parent | 1756faa4723f248e95695d288d0eeff203f53bfd (diff) | |
| download | bcm5719-llvm-8418fdcd5914db7a33e0f44ebd6b3eb1dc09e945.tar.gz bcm5719-llvm-8418fdcd5914db7a33e0f44ebd6b3eb1dc09e945.zip | |
ExecutionEngine: push TargetMachine creation into clients (v2)
In particular, into EngineBuilder. This should only impact
the private API between the EE and EB classes, not external
clients, since JITCtor and MCJITCtor are both protected members.
llvm-svn: 131317
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/ExecutionEngine/ExecutionEngine.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h b/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h index 31fccc5060f..88b21cd4d25 100644 --- a/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h +++ b/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h @@ -135,20 +135,14 @@ protected: JITMemoryManager *JMM, CodeGenOpt::Level OptLevel, bool GVsWithCode, - CodeModel::Model CMM, - StringRef MArch, - StringRef MCPU, - const SmallVectorImpl<std::string>& MAttrs); + TargetMachine *TM); static ExecutionEngine *(*MCJITCtor)( Module *M, std::string *ErrorStr, JITMemoryManager *JMM, CodeGenOpt::Level OptLevel, bool GVsWithCode, - CodeModel::Model CMM, - StringRef MArch, - StringRef MCPU, - const SmallVectorImpl<std::string>& MAttrs); + TargetMachine *TM); static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr); |

