1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

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 09a1ba491b
commit 806b7ff4be

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