diff options
author | Nate Begeman <natebegeman@mac.com> | 2009-07-30 02:00:06 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2009-07-30 02:00:06 +0000 |
commit | 50b69eaa367f479f7528a58e9ea81f57a55ec1e7 (patch) | |
tree | 74c40a09b8bd19c23b84d76dff8c0ef57f93e005 /llvm | |
parent | ba848438e337ddc7fe10870c2cf2c9ad288265f6 (diff) | |
download | bcm5719-llvm-50b69eaa367f479f7528a58e9ea81f57a55ec1e7.tar.gz bcm5719-llvm-50b69eaa367f479f7528a58e9ea81f57a55ec1e7.zip |
Typo
llvm-svn: 77568
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/VMCore/Verifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Verifier.cpp b/llvm/lib/VMCore/Verifier.cpp index 407a80b2378..2b832983f5c 100644 --- a/llvm/lib/VMCore/Verifier.cpp +++ b/llvm/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<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(), |