Fix a bug in my previous checkin
authorChris Lattner <sabre@nondot.org>
Sat, 23 Apr 2005 22:01:39 +0000 (22:01 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 23 Apr 2005 22:01:39 +0000 (22:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21485 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Type.cpp

index fb7479a08ace20f3cf9775e3382904b1f3f8d7be..48c468a4a461011fff28cc0ac50da2a283e0e8e0 100644 (file)
@@ -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;
   }
 }