Replace calls to getSizeInBits with getExtendedSizeInBits since its already known...
authorCraig Topper <craig.topper@gmail.com>
Wed, 26 Sep 2012 07:11:42 +0000 (07:11 +0000)
committerCraig Topper <craig.topper@gmail.com>
Wed, 26 Sep 2012 07:11:42 +0000 (07:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164667 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/ValueTypes.cpp

index e9370f62e64cf397e668859008ae91466be5b1a8..2ee9f0f4c99f53f4e98c0a9d1bcff3df2b913373 100644 (file)
@@ -56,31 +56,31 @@ bool EVT::isExtendedVector() const {
 }
 
 bool EVT::isExtended16BitVector() const {
-  return isExtendedVector() && getSizeInBits() == 16;
+  return isExtendedVector() && getExtendedSizeInBits() == 16;
 }
 
 bool EVT::isExtended32BitVector() const {
-  return isExtendedVector() && getSizeInBits() == 32;
+  return isExtendedVector() && getExtendedSizeInBits() == 32;
 }
 
 bool EVT::isExtended64BitVector() const {
-  return isExtendedVector() && getSizeInBits() == 64;
+  return isExtendedVector() && getExtendedSizeInBits() == 64;
 }
 
 bool EVT::isExtended128BitVector() const {
-  return isExtendedVector() && getSizeInBits() == 128;
+  return isExtendedVector() && getExtendedSizeInBits() == 128;
 }
 
 bool EVT::isExtended256BitVector() const {
-  return isExtendedVector() && getSizeInBits() == 256;
+  return isExtendedVector() && getExtendedSizeInBits() == 256;
 }
 
 bool EVT::isExtended512BitVector() const {
-  return isExtendedVector() && getSizeInBits() == 512;
+  return isExtendedVector() && getExtendedSizeInBits() == 512;
 }
 
 bool EVT::isExtended1024BitVector() const {
-  return isExtendedVector() && getSizeInBits() == 1024;
+  return isExtendedVector() && getExtendedSizeInBits() == 1024;
 }
 
 EVT EVT::getExtendedVectorElementType() const {