From: Reid Spencer Date: Sat, 13 Jan 2007 00:12:29 +0000 (+0000) Subject: Make sure the IntegerValType has enough space for 2^23 bits. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=062f0360eda582d1312a20139c864bf0c109dd68;p=oota-llvm.git 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 --- diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index b70cd5f4312..e03d9a78871 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -929,7 +929,7 @@ public: // namespace llvm { class IntegerValType { - uint16_t bits; + uint32_t bits; public: IntegerValType(uint16_t numbits) : bits(numbits) {}