aboutsummaryrefslogtreecommitdiff
path: root/lib/VMCore/Instructions.cpp
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
commitca01cfe4df705e57bf0c8992b2d907c63626a5be (patch)
tree0165be9c909c0056875bc6a9eb4af1a7254a1500 /lib/VMCore/Instructions.cpp
parentdd353b8ad747a8731a191848ff5db978a70bd0fb (diff)
Fix an assertion message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33519 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Instructions.cpp')
-rw-r--r--lib/VMCore/Instructions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp
index 0d40ee7cf9..f996ab88e5 100644
--- a/lib/VMCore/Instructions.cpp
+++ b/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;
}