summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2009-07-30 02:00:06 +0000
committerNate Begeman <natebegeman@mac.com>2009-07-30 02:00:06 +0000
commit50b69eaa367f479f7528a58e9ea81f57a55ec1e7 (patch)
tree74c40a09b8bd19c23b84d76dff8c0ef57f93e005
parentba848438e337ddc7fe10870c2cf2c9ad288265f6 (diff)
downloadbcm5719-llvm-50b69eaa367f479f7528a58e9ea81f57a55ec1e7.tar.gz
bcm5719-llvm-50b69eaa367f479f7528a58e9ea81f57a55ec1e7.zip
Typo
llvm-svn: 77568
-rw-r--r--llvm/lib/VMCore/Verifier.cpp2
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(),
OpenPOWER on IntegriCloud