Fix an assertion message.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 26 Jan 2007 06:30:34 +0000 (06:30 +0000)
committerReid 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

index 0d40ee7cf96905c2423de584dfa4f7f8a96ce6dd..f996ab88e53a992ee2067336385e497c5d08a7e6 100644 (file)
@@ -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;
 }