diff options
| author | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-05-06 22:06:22 +0000 |
|---|---|---|
| committer | Dylan Noblesmith <nobled@dreamwidth.org> | 2011-05-06 22:06:22 +0000 |
| commit | ab6bd20da9cc02661dde52675d0f0b25ae70236a (patch) | |
| tree | 3c1d8a5a0a08c964e24e998bdf6aa651acfc631f /llvm/include | |
| parent | fed7f0b3a0bda0f649be3c8ce16565f3ca063274 (diff) | |
| download | bcm5719-llvm-ab6bd20da9cc02661dde52675d0f0b25ae70236a.tar.gz bcm5719-llvm-ab6bd20da9cc02661dde52675d0f0b25ae70236a.zip | |
ExecutionEngine: push TargetMachine creation into clients
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: 131026
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 fdc2ad9bf77..4a7e0b47507 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); |

