projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dd353b8
)
Fix an assertion message.
author
Reid Spencer
<rspencer@reidspencer.com>
Fri, 26 Jan 2007 06:30:34 +0000
(06:30 +0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Fri, 26 Jan 2007 06:30:34 +0000
(06:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33519
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/VMCore/Instructions.cpp
patch
|
blob
|
history
diff --git
a/lib/VMCore/Instructions.cpp
b/lib/VMCore/Instructions.cpp
index 0d40ee7cf96905c2423de584dfa4f7f8a96ce6dd..f996ab88e53a992ee2067336385e497c5d08a7e6 100644
(file)
--- 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;
}