diff options
author | Chris Lattner <sabre@nondot.org> | 2001-10-15 19:18:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-10-15 19:18:26 +0000 |
commit | 7b851abd85ec57108c1f24ab9c972e14572deac3 (patch) | |
tree | ee01cf70218c33a534df8e1e78175e0189844b37 /lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 1b3512ff974ed4aa0acadced11215e40b053b8d5 (diff) |
Implement ulong & long support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@843 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | lib/ExecutionEngine/Interpreter/Interpreter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h index 4b73b3d28b..82e7f1fc3f 100644 --- a/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -9,6 +9,7 @@ #include "llvm/Module.h" #include "llvm/Method.h" +#include "llvm/Support/DataTypes.h" struct MethodInfo; // Defined in ExecutionAnnotations.h class CallInst; @@ -24,6 +25,8 @@ union GenericValue { signed short ShortVal; unsigned int UIntVal; signed int IntVal; + uint64_t ULongVal; + int64_t LongVal; double DoubleVal; float FloatVal; GenericValue *PointerVal; |