diff options
author | Chris Lattner <sabre@nondot.org> | 2009-03-08 04:06:26 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-03-08 04:06:26 +0000 |
commit | cf1bb0836899c59694d0bbccd145d1b479547a1f (patch) | |
tree | ea27b13a9dc0369fea51f089252c63ded4d6d26d /lib | |
parent | c570487d45f7426dc5f75c0309122d6f9330ecf7 (diff) |
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/VMCore/Constants.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index f75fb63d7c..0be2811e35 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); } |