summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-26 06:30:34 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-26 06:30:34 +0000
commit7e16e23df85bb97334e57d4786bff74bfe4877ee (patch)
treeb865dd70e82bddb36daca191b8ff3670df7e3ab2
parent1e270b639d26f3b49dc5c0d88cdc433e08a4dd0f (diff)
downloadbcm5719-llvm-7e16e23df85bb97334e57d4786bff74bfe4877ee.tar.gz
bcm5719-llvm-7e16e23df85bb97334e57d4786bff74bfe4877ee.zip
Fix an assertion message.
llvm-svn: 33519
-rw-r--r--llvm/lib/VMCore/Instructions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Instructions.cpp b/llvm/lib/VMCore/Instructions.cpp
index 0d40ee7cf96..f996ab88e53 100644
--- a/llvm/lib/VMCore/Instructions.cpp
+++ b/llvm/lib/VMCore/Instructions.cpp
@@ -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;
}
OpenPOWER on IntegriCloud