From 9b6ec77647ca49b0177d5305af2292c90bb6f482 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 18 Oct 2007 16:10:48 +0000 Subject: [PATCH] fix typo llvm-svn: 43129 --- llvm/lib/VMCore/Instructions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/VMCore/Instructions.cpp b/llvm/lib/VMCore/Instructions.cpp index 369e98afe373..ed553e94ce83 100644 --- a/llvm/lib/VMCore/Instructions.cpp +++ b/llvm/lib/VMCore/Instructions.cpp @@ -601,7 +601,7 @@ static Value *getAISize(Value *Amt) { Amt = ConstantInt::get(Type::Int32Ty, 1); else { assert(!isa(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!"); }