Remove a useless statement.
authorReid Spencer <rspencer@reidspencer.com>
Mon, 18 Dec 2006 23:40:19 +0000 (23:40 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 18 Dec 2006 23:40:19 +0000 (23:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32660 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Verifier.cpp

index 8563216c5068034c133a7badaa7e87ec4a2639da..5983204aa0550a077e34cf66e04c024c06669e4d 100644 (file)
@@ -922,7 +922,6 @@ void Verifier::visitInstruction(Instruction &I) {
             // 'OpBlock' dominates all of its predecessors other than the
             // invoke.  In this case, the invoke value can still be used.
             if (!Bad) {
-              Bad = false;
               for (pred_iterator PI = pred_begin(OpBlock),
                    E = pred_end(OpBlock); PI != E; ++PI) {
                 if (*PI != II->getParent() && !EF->dominates(OpBlock, *PI)) {