Add a check to avoid allowing V->replaceAllUsesWith(V)

llvm-svn: 104
This commit is contained in:
Chris Lattner 2001-06-29 05:25:51 +00:00
parent 615d3cf40d
commit 2dd58aefa5
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ Value::~Value() {
void Value::replaceAllUsesWith(Value *D) {
assert(D && "Value::replaceAllUsesWith(<null>) is invalid!");
assert(D != this && "V->replaceAllUsesWith(V) is NOT valid!");
while (!Uses.empty()) {
User *Use = Uses.front();
#ifndef NDEBUG