diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-31 05:23:18 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-31 05:23:18 +0000 |
commit | 2ba767f44ad8af9f941213e3dad017771e572db8 (patch) | |
tree | a72bb50ce3acad525c819fc4c200d3e5ae237928 /include/llvm/ExecutionEngine/GenericValue.h | |
parent | 57a0342e96b18af93972d8371e7b5eb82dc853c4 (diff) |
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
Diffstat (limited to 'include/llvm/ExecutionEngine/GenericValue.h')
-rw-r--r-- | include/llvm/ExecutionEngine/GenericValue.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/include/llvm/ExecutionEngine/GenericValue.h b/include/llvm/ExecutionEngine/GenericValue.h index 8740b31391..9a162cafce 100644 --- a/include/llvm/ExecutionEngine/GenericValue.h +++ b/include/llvm/ExecutionEngine/GenericValue.h @@ -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; |