aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ExecutionEngine/GenericValue.h
diff options
context:
space:
mode:
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 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;