summaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-24 19:50:53 +0000
committerChris Lattner <sabre@nondot.org>2003-08-24 19:50:53 +0000
commit39c07264da992fd5d37fa7eaac0b9f02f55f80d0 (patch)
tree8272f4fdfbabda52456df604bd85d18ae616fc51 /include/llvm/ExecutionEngine
parent62c720a5bdd36b85dd497a1c3575db5731eca208 (diff)
downloadllvm-39c07264da992fd5d37fa7eaac0b9f02f55f80d0.tar.gz
llvm-39c07264da992fd5d37fa7eaac0b9f02f55f80d0.tar.bz2
llvm-39c07264da992fd5d37fa7eaac0b9f02f55f80d0.tar.xz
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/ExecutionEngine')
-rw-r--r--include/llvm/ExecutionEngine/ExecutionEngine.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h
index 45f7a274d0..e2d43c97f4 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];