aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/JIT/VM.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ExecutionEngine/JIT/VM.h')
-rw-r--r--lib/ExecutionEngine/JIT/VM.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/JIT/VM.h b/lib/ExecutionEngine/JIT/VM.h
index f79be1f349..ddfd8964f8 100644
--- a/lib/ExecutionEngine/JIT/VM.h
+++ b/lib/ExecutionEngine/JIT/VM.h
@@ -23,13 +23,13 @@ class VM : public ExecutionEngine {
MachineCodeEmitter *MCE; // MCE object
public:
- VM(Module *M, TargetMachine *tm);
+ VM(ModuleProvider *MP, TargetMachine *tm);
~VM();
/// create - Create an return a new JIT compiler if there is one available
/// for the current target. Otherwise, return null.
///
- static ExecutionEngine *create(Module *M);
+ static ExecutionEngine *create(ModuleProvider *MP);
/// run - Start execution with the specified function and arguments.
///