For PR950:

Change integer type names for signless integer types


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32777 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer
2006-12-31 05:23:18 +00:00
parent 57a0342e96
commit 2ba767f44a
4 changed files with 26 additions and 29 deletions
+4 -8
View File
@@ -23,14 +23,10 @@ typedef uintptr_t PointerTy;
union GenericValue {
bool BoolVal;
unsigned char UByteVal;
signed char SByteVal;
unsigned short UShortVal;
signed short ShortVal;
unsigned int UIntVal;
signed int IntVal;
uint64_t ULongVal;
int64_t LongVal;
unsigned char Int8Val;
unsigned short Int16Val;
unsigned int Int32Val;
uint64_t Int64Val;
double DoubleVal;
float FloatVal;
struct { unsigned int first; unsigned int second; } UIntPairVal;