[llvm-commits] CVS: llvm/lib/VMCore/Type.cpp

Reid Spencer reid at x10sys.com
Fri Jan 12 16:12:44 PST 2007



Changes in directory llvm/lib/VMCore:

Type.cpp updated: 1.158 -> 1.159
---
Log message:

Make sure the IntegerValType has enough space for 2^23 bits.


---
Diffs of the changes:  (+1 -1)

 Type.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/VMCore/Type.cpp
diff -u llvm/lib/VMCore/Type.cpp:1.158 llvm/lib/VMCore/Type.cpp:1.159
--- llvm/lib/VMCore/Type.cpp:1.158	Fri Jan 12 01:05:14 2007
+++ llvm/lib/VMCore/Type.cpp	Fri Jan 12 18:12:29 2007
@@ -929,7 +929,7 @@
 //
 namespace llvm {
 class IntegerValType {
-  uint16_t bits;
+  uint32_t bits;
 public:
   IntegerValType(uint16_t numbits) : bits(numbits) {}
 






More information about the llvm-commits mailing list