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 | 4d4f424f0ca9b69428ecda479a8501357c98b546 (patch) | |
tree | d5e230ba7636e108d3930dec2ccc195632f4b7ad /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 9cb8d7d0acfc1889276f706c4ad8a589439b41fa (diff) | |
download | bcm5719-llvm-4d4f424f0ca9b69428ecda479a8501357c98b546.tar.gz bcm5719-llvm-4d4f424f0ca9b69428ecda479a8501357c98b546.zip |
Targets now configure themselves based on the source module, not on the
ad-hoc "Config" flags
llvm-svn: 8134
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index d3963ef26c3..89581e0fd5f 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -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 |