From: Reid Spencer Date: Fri, 26 Jan 2007 06:30:34 +0000 (+0000) Subject: Fix an assertion message. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ca01cfe4df705e57bf0c8992b2d907c63626a5be;p=oota-llvm.git Fix an assertion message. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33519 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp index 0d40ee7cf96..f996ab88e53 100644 --- a/lib/VMCore/Instructions.cpp +++ b/lib/VMCore/Instructions.cpp @@ -518,7 +518,7 @@ static Value *getAISize(Value *Amt) { assert(!isa(Amt) && "Passed basic block into allocation size parameter! Ue other ctor"); assert(Amt->getType() == Type::Int32Ty && - "Malloc/Allocation array size != UIntTy!"); + "Malloc/Allocation array size is not a 32-bit integer!"); } return Amt; }