aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-10-18 16:10:48 +0000
committerChris Lattner <sabre@nondot.org>2007-10-18 16:10:48 +0000
commit4c5009caa10c82e515c3a02fd5e3224ad447b198 (patch)
tree7cbad49704f4aff5fcdb62c8ede850dafa8e5912 /lib/VMCore
parentdb7f3655633fd797de256bc746277401589b7c24 (diff)
downloadexternal_llvm-4c5009caa10c82e515c3a02fd5e3224ad447b198.zip
external_llvm-4c5009caa10c82e515c3a02fd5e3224ad447b198.tar.gz
external_llvm-4c5009caa10c82e515c3a02fd5e3224ad447b198.tar.bz2
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43129 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Instructions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp
index 369e98a..ed553e9 100644
--- a/lib/VMCore/Instructions.cpp
+++ b/lib/VMCore/Instructions.cpp
@@ -601,7 +601,7 @@ static Value *getAISize(Value *Amt) {
Amt = ConstantInt::get(Type::Int32Ty, 1);
else {
assert(!isa<BasicBlock>(Amt) &&
- "Passed basic block into allocation size parameter! Ue other ctor");
+ "Passed basic block into allocation size parameter! Use other ctor");
assert(Amt->getType() == Type::Int32Ty &&
"Malloc/Allocation array size is not a 32-bit integer!");
}