aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ExecutionEngine/GenericValue.h
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-12-31 05:23:18 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-12-31 05:23:18 +0000
commit2ba767f44ad8af9f941213e3dad017771e572db8 (patch)
treea72bb50ce3acad525c819fc4c200d3e5ae237928 /include/llvm/ExecutionEngine/GenericValue.h
parent57a0342e96b18af93972d8371e7b5eb82dc853c4 (diff)
downloadexternal_llvm-2ba767f44ad8af9f941213e3dad017771e572db8.zip
external_llvm-2ba767f44ad8af9f941213e3dad017771e572db8.tar.gz
external_llvm-2ba767f44ad8af9f941213e3dad017771e572db8.tar.bz2
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.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/include/llvm/ExecutionEngine/GenericValue.h b/include/llvm/ExecutionEngine/GenericValue.h
index 8740b31..9a162ca 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;