summaryrefslogtreecommitdiffstats
path: root/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
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
commit4d4f424f0ca9b69428ecda479a8501357c98b546 (patch)
treed5e230ba7636e108d3930dec2ccc195632f4b7ad /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
parent9cb8d7d0acfc1889276f706c4ad8a589439b41fa (diff)
downloadbcm5719-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.h3
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
OpenPOWER on IntegriCloud