[llvm-commits] [llvm] r77568 - /llvm/trunk/lib/VMCore/Verifier.cpp

Nate Begeman natebegeman at mac.com
Wed Jul 29 19:00:06 PDT 2009


Author: sampo
Date: Wed Jul 29 21:00:06 2009
New Revision: 77568

URL: http://llvm.org/viewvc/llvm-project?rev=77568&view=rev
Log:
Typo

Modified:
    llvm/trunk/lib/VMCore/Verifier.cpp

Modified: llvm/trunk/lib/VMCore/Verifier.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Verifier.cpp?rev=77568&r1=77567&r2=77568&view=diff

==============================================================================
--- llvm/trunk/lib/VMCore/Verifier.cpp (original)
+++ llvm/trunk/lib/VMCore/Verifier.cpp Wed Jul 29 21:00:06 2009
@@ -956,7 +956,7 @@
   // 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(),





More information about the llvm-commits mailing list