Fix an assertion message.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33519 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-01-26 06:30:34 +00:00
parent dd353b8ad7
commit ca01cfe4df

View File

@ -518,7 +518,7 @@ static Value *getAISize(Value *Amt) {
assert(!isa<BasicBlock>(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;
}