From: Nate Begeman Date: Thu, 30 Jul 2009 02:00:06 +0000 (+0000) Subject: Typo X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=55a961f075db29a254d3173b105e9930c5400f66;p=oota-llvm.git Typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77568 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 407a80b2378..2b832983f5c 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -956,7 +956,7 @@ void Verifier::visitBitCastInst(BitCastInst &I) { // However, you can't cast pointers to anything but pointers. Assert1(isa(DestTy) == isa(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(),