diff options
-rw-r--r-- | lib/VMCore/TypesContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/TypesContext.h b/lib/VMCore/TypesContext.h index 7419b0e894..484284551f 100644 --- a/lib/VMCore/TypesContext.h +++ b/lib/VMCore/TypesContext.h @@ -68,7 +68,7 @@ static unsigned getSubElementHash(const Type *Ty) { class IntegerValType { uint32_t bits; public: - IntegerValType(uint16_t numbits) : bits(numbits) {} + IntegerValType(uint32_t numbits) : bits(numbits) {} static IntegerValType get(const IntegerType *Ty) { return IntegerValType(Ty->getBitWidth()); |