Add APIntVal as a possible GenericeValue.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34879 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-03-03 07:36:44 +00:00
parent a7288df62d
commit 1416862d7c

View File

@ -20,6 +20,8 @@
namespace llvm {
typedef uintptr_t PointerTy;
class APInt;
class Type;
union GenericValue {
bool Int1Val;
@ -27,6 +29,7 @@ union GenericValue {
unsigned short Int16Val;
unsigned int Int32Val;
uint64_t Int64Val;
APInt *APIntVal;
double DoubleVal;
float FloatVal;
struct { unsigned int first; unsigned int second; } UIntPairVal;