Add APIntVal as a possible GenericeValue.

llvm-svn: 34879
This commit is contained in:
Reid Spencer 2007-03-03 07:36:44 +00:00
parent d74cb0e194
commit cfe415c4e1

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;