From cf1bb0836899c59694d0bbccd145d1b479547a1f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 8 Mar 2009 04:06:26 +0000 Subject: [PATCH] fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66367 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Constants.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index f75fb63d7cb..0be2811e354 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -1995,7 +1995,7 @@ Constant *ConstantExpr::getBitCast(Constant *C, const Type *DstTy) { unsigned SrcBitSize = SrcTy->getPrimitiveSizeInBits(); unsigned DstBitSize = DstTy->getPrimitiveSizeInBits(); #endif - assert(SrcBitSize == DstBitSize && "BitCast requies types of same width"); + assert(SrcBitSize == DstBitSize && "BitCast requires types of same width"); return getFoldedCast(Instruction::BitCast, C, DstTy); }