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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33168 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-01-13 00:12:29 +00:00
parent 790366be6d
commit 062f0360ed

View File

@ -929,7 +929,7 @@ public:
//
namespace llvm {
class IntegerValType {
uint16_t bits;
uint32_t bits;
public:
IntegerValType(uint16_t numbits) : bits(numbits) {}