From: Chris Lattner Date: Mon, 2 Jun 2003 17:42:47 +0000 (+0000) Subject: * Make assertion message useful X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b84388937cbe7d5cb32a39e649ef020d4d7e5cb5;p=oota-llvm.git * Make assertion message useful * Kill dead conditional git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6544 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index 5c2f73e0017..7ae04e491d2 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -225,7 +225,8 @@ ConstantStruct::ConstantStruct(const StructType *T, "Invalid initializer vector for constant structure"); Operands.reserve(V.size()); for (unsigned i = 0, e = V.size(); i != e; ++i) { - assert(V[i]->getType() == ETypes[i]); + assert(V[i]->getType() == ETypes[i] && + "Initializer for struct element doesn't match struct element type!"); Operands.push_back(Use(V[i], this)); } } @@ -671,12 +672,10 @@ void ConstantPointerNull::refineAbstractType(const DerivedType *OldTy, if (OldTy == NewTy) return; // Make everyone now use a constant of the new type... - if (NewTy != OldTy) { - replaceAllUsesWith(ConstantPointerNull::get(cast(NewTy))); + replaceAllUsesWith(ConstantPointerNull::get(cast(NewTy))); - // This constant is now dead, destroy it. - destroyConstant(); - } + // This constant is now dead, destroy it. + destroyConstant(); }