Should reset DBI_Prev if DBI_Next == 0.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65314 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Zhou Sheng 2009-02-23 10:14:11 +00:00
parent 242b38bae5
commit 8313ef42b7

View File

@ -12419,6 +12419,8 @@ static void AddReachableCodeToWorklist(BasicBlock *BB,
DBI_Prev->eraseFromParent();
}
DBI_Prev = DBI_Next;
} else {
DBI_Prev = 0;
}
IC.AddToWorkList(Inst);