[llvm-commits] [llvm] r43129 - /llvm/trunk/lib/VMCore/Instructions.cpp
Chris Lattner
sabre at nondot.org
Thu Oct 18 09:10:48 PDT 2007
Author: lattner
Date: Thu Oct 18 11:10:48 2007
New Revision: 43129
URL: http://llvm.org/viewvc/llvm-project?rev=43129&view=rev
Log:
fix typo
Modified:
llvm/trunk/lib/VMCore/Instructions.cpp
Modified: llvm/trunk/lib/VMCore/Instructions.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Instructions.cpp?rev=43129&r1=43128&r2=43129&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Instructions.cpp (original)
+++ llvm/trunk/lib/VMCore/Instructions.cpp Thu Oct 18 11:10:48 2007
@@ -601,7 +601,7 @@
Amt = ConstantInt::get(Type::Int32Ty, 1);
else {
assert(!isa<BasicBlock>(Amt) &&
- "Passed basic block into allocation size parameter! Ue other ctor");
+ "Passed basic block into allocation size parameter! Use other ctor");
assert(Amt->getType() == Type::Int32Ty &&
"Malloc/Allocation array size is not a 32-bit integer!");
}
More information about the llvm-commits
mailing list