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 | 67beacef4f4c8a6f440bb588e2fcaf7771bebc3e (patch) | |
tree | 4c11c3483dc7d68c2f348ec56d0351eef793c938 /llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | |
parent | 0abbdbf27cb1916dbc823629f55df4ba05bd3595 (diff) | |
download | bcm5719-llvm-67beacef4f4c8a6f440bb588e2fcaf7771bebc3e.tar.gz bcm5719-llvm-67beacef4f4c8a6f440bb588e2fcaf7771bebc3e.zip |
Implement ulong & long support
llvm-svn: 843
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter/Interpreter.h')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index 4b73b3d28b0..82e7f1fc3fa 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/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; |