aboutsummaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine/Interpreter/Interpreter.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-17 17:26:22 +0000
committerChris Lattner <sabre@nondot.org>2003-09-17 17:26:22 +0000
commit63bd61330b89afc669b17a08a25b97ba911e1c96 (patch)
tree35a24e7745b9577788e0cbbccc2076240162612e /lib/ExecutionEngine/Interpreter/Interpreter.h
parent621727c29ead58158121f52e5a8f66d14bb0d4c8 (diff)
Change FunctionInfo from being an annotation put on Functions to be
something which is mapped from functions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8580 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r--lib/ExecutionEngine/Interpreter/Interpreter.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h
index 26ed2dc6d1..61d391a360 100644
--- a/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -82,6 +82,8 @@ class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
// AtExitHandlers - List of functions to call when the program exits,
// registered with the atexit() library function.
std::vector<Function*> AtExitHandlers;
+
+ std::map<Function*, FunctionInfo*> FunctionInfoMap;
public:
Interpreter(Module *M, bool isLittleEndian, bool isLongPointer,
bool TraceMode);