[llvm-commits] CVS: llvm/lib/VMCore/Instructions.cpp

Reid Spencer reid at x10sys.com
Thu Jan 25 22:30:50 PST 2007



Changes in directory llvm/lib/VMCore:

Instructions.cpp updated: 1.65 -> 1.66
---
Log message:

Fix an assertion message.


---
Diffs of the changes:  (+1 -1)

 Instructions.cpp |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/lib/VMCore/Instructions.cpp
diff -u llvm/lib/VMCore/Instructions.cpp:1.65 llvm/lib/VMCore/Instructions.cpp:1.66
--- llvm/lib/VMCore/Instructions.cpp:1.65	Sat Jan 20 18:29:26 2007
+++ llvm/lib/VMCore/Instructions.cpp	Fri Jan 26 00:30:34 2007
@@ -518,7 +518,7 @@
     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;
 }






More information about the llvm-commits mailing list