aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
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
commit55a961f075db29a254d3173b105e9930c5400f66 (patch)
tree062a209bd65e450dcb327e31e057844311fc2e1f /lib/VMCore
parenta4714e025de720d0fcbaa78ab6c12dc789599233 (diff)
downloadexternal_llvm-55a961f075db29a254d3173b105e9930c5400f66.zip
external_llvm-55a961f075db29a254d3173b105e9930c5400f66.tar.gz
external_llvm-55a961f075db29a254d3173b105e9930c5400f66.tar.bz2
Typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77568 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Verifier.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp
index 407a80b..2b83298 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<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(),