diff options
author | Chris Lattner <sabre@nondot.org> | 2003-08-24 19:50:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-08-24 19:50:53 +0000 |
commit | 39c07264da992fd5d37fa7eaac0b9f02f55f80d0 (patch) | |
tree | 8272f4fdfbabda52456df604bd85d18ae616fc51 /include/llvm | |
parent | 62c720a5bdd36b85dd497a1c3575db5731eca208 (diff) | |
download | external_llvm-39c07264da992fd5d37fa7eaac0b9f02f55f80d0.zip external_llvm-39c07264da992fd5d37fa7eaac0b9f02f55f80d0.tar.gz external_llvm-39c07264da992fd5d37fa7eaac0b9f02f55f80d0.tar.bz2 |
Targets now configure themselves based on the source module, not on the
ad-hoc "Config" flags
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8134 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/ExecutionEngine/ExecutionEngine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h index 45f7a27..e2d43c9 100644 --- a/include/llvm/ExecutionEngine/ExecutionEngine.h +++ b/include/llvm/ExecutionEngine/ExecutionEngine.h @@ -51,12 +51,12 @@ public: /// createJIT - Create an return a new JIT compiler if there is one available /// for the current target. Otherwise it returns null. /// - static ExecutionEngine *createJIT(Module *M, unsigned Config); + static ExecutionEngine *createJIT(Module *M); /// createInterpreter - Create a new interpreter object. This can never fail. /// - static ExecutionEngine *createInterpreter(Module *M, unsigned Config, - bool DebugMode, bool TraceMode); + static ExecutionEngine *createInterpreter(Module *M, bool DebugMode, + bool TraceMode); void addGlobalMapping(const Function *F, void *Addr) { void *&CurVal = GlobalAddress[(const GlobalValue*)F]; |