forked from OSchip/llvm-project
* Make assertion message useful
* Kill dead conditional llvm-svn: 6544
This commit is contained in:
parent
4476a7bf80
commit
93c8f14906
|
@ -225,7 +225,8 @@ ConstantStruct::ConstantStruct(const StructType *T,
|
||||||
"Invalid initializer vector for constant structure");
|
"Invalid initializer vector for constant structure");
|
||||||
Operands.reserve(V.size());
|
Operands.reserve(V.size());
|
||||||
for (unsigned i = 0, e = V.size(); i != e; ++i) {
|
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));
|
Operands.push_back(Use(V[i], this));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -671,12 +672,10 @@ void ConstantPointerNull::refineAbstractType(const DerivedType *OldTy,
|
||||||
if (OldTy == NewTy) return;
|
if (OldTy == NewTy) return;
|
||||||
|
|
||||||
// Make everyone now use a constant of the new type...
|
// Make everyone now use a constant of the new type...
|
||||||
if (NewTy != OldTy) {
|
replaceAllUsesWith(ConstantPointerNull::get(cast<PointerType>(NewTy)));
|
||||||
replaceAllUsesWith(ConstantPointerNull::get(cast<PointerType>(NewTy)));
|
|
||||||
|
|
||||||
// This constant is now dead, destroy it.
|
// This constant is now dead, destroy it.
|
||||||
destroyConstant();
|
destroyConstant();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue