Typo
authorNate Begeman <natebegeman@mac.com>
Thu, 30 Jul 2009 02:00:06 +0000 (02:00 +0000)
committerNate Begeman <natebegeman@mac.com>
Thu, 30 Jul 2009 02:00:06 +0000 (02:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77568 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Verifier.cpp

index 407a80b23782533d71887e176eb12217bc8011b1..2b832983f5cc466a52872fdc2e2b581b8201d16f 100644 (file)
@@ -956,7 +956,7 @@ void Verifier::visitBitCastInst(BitCastInst &I) {
   // However, you can't cast pointers to anything but pointers.
   Assert1(isa<PointerType>(DestTy) == isa<PointerType>(DestTy),
           "Bitcast requires both operands to be pointer or neither", &I);
-  Assert1(SrcBitSize == DestBitSize, "Bitcast requies types of same width", &I);
+  Assert1(SrcBitSize == DestBitSize, "Bitcast requires types of same width",&I);
 
   // Disallow aggregates.
   Assert1(!SrcTy->isAggregateType(),