From: Chris Lattner Date: Sat, 23 Apr 2005 22:01:39 +0000 (+0000) Subject: Fix a bug in my previous checkin X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ea1049139ecfb281f4ffb07de09a56fde839482c;p=oota-llvm.git Fix a bug in my previous checkin git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21485 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index fb7479a08ac..48c468a4a46 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -138,34 +138,34 @@ const Type *Type::getSignedVersion() const { // unsigned Type::getPrimitiveSize() const { switch (getTypeID()) { - case Type::BoolTy: - case Type::SByteTy: - case Type::UByteTy: return 1; - case Type::UShortTy: - case Type::ShortTy: return 2; - case Type::FloatTy: - case Type::IntTy: - case Type::UIntTy: return 4; - case Type::LongTy: - case Type::ULongTy: - case Type::DoubleTy: return 8; + case Type::BoolTyID: + case Type::SByteTyID: + case Type::UByteTyID: return 1; + case Type::UShortTyID: + case Type::ShortTyID: return 2; + case Type::FloatTyID: + case Type::IntTyID: + case Type::UIntTyID: return 4; + case Type::LongTyID: + case Type::ULongTyID: + case Type::DoubleTyID: return 8; default: return 0; } } unsigned Type::getPrimitiveSizeInBits() const { switch (getTypeID()) { - case Type::BoolTy: return 1; - case Type::SByteTy: - case Type::UByteTy: return 8; - case Type::UShortTy: - case Type::ShortTy: return 16; - case Type::FloatTy: - case Type::IntTy: - case Type::UIntTy: return 32; - case Type::LongTy: - case Type::ULongTy: - case Type::DoubleTy: return 64; + case Type::BoolTyID: return 1; + case Type::SByteTyID: + case Type::UByteTyID: return 8; + case Type::UShortTyID: + case Type::ShortTyID: return 16; + case Type::FloatTyID: + case Type::IntTyID: + case Type::UIntTyID: return 32; + case Type::LongTyID: + case Type::ULongTyID: + case Type::DoubleTyID: return 64; default: return 0; } }