Targets now configure themselves based on the source module, not on the
[oota-llvm.git] / lib / ExecutionEngine / Interpreter / Interpreter.h
index d3963ef26c318e058792df197b68ff1b708f562d..89581e0fd5f42da0667f2f77d690dfdf687d8e39 100644 (file)
@@ -87,7 +87,8 @@ class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
   // AtExitHandlers - List of functions to call when the program exits.
   std::vector<Function*> AtExitHandlers;
 public:
-  Interpreter(Module *M, unsigned Config, bool DebugMode, bool TraceMode);
+  Interpreter(Module *M, bool isLittleEndian, bool isLongPointer,
+              bool DebugMode, bool TraceMode);
   inline ~Interpreter() { CW.setModule(0); }
 
   // getExitCode - return the code that should be the exit code for the lli