[llvm-commits] CVS: llvm/include/llvm/ExecutionEngine/GenericValue.h

Reid Spencer reid at x10sys.com
Sat Dec 30 21:23:37 PST 2006



Changes in directory llvm/include/llvm/ExecutionEngine:

GenericValue.h updated: 1.7 -> 1.8
---
Log message:

For PR950: http://llvm.org/PR950 :
Change integer type names for signless integer types


---
Diffs of the changes:  (+4 -8)

 GenericValue.h |   12 ++++--------
 1 files changed, 4 insertions(+), 8 deletions(-)


Index: llvm/include/llvm/ExecutionEngine/GenericValue.h
diff -u llvm/include/llvm/ExecutionEngine/GenericValue.h:1.7 llvm/include/llvm/ExecutionEngine/GenericValue.h:1.8
--- llvm/include/llvm/ExecutionEngine/GenericValue.h:1.7	Thu Apr 21 15:39:54 2005
+++ llvm/include/llvm/ExecutionEngine/GenericValue.h	Sat Dec 30 23:23:18 2006
@@ -23,14 +23,10 @@
 
 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;






More information about the llvm-commits mailing list