From: Chris Lattner Date: Thu, 18 Oct 2007 16:10:48 +0000 (+0000) Subject: fix typo X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=53336cb47ee481ef3733958d2bf38ee1dcc381c7;p=oota-llvm.git fix typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43129 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp index 369e98afe37..ed553e94ce8 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(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!"); }