From: Reid Spencer Date: Mon, 18 Dec 2006 23:40:19 +0000 (+0000) Subject: Remove a useless statement. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c597a888c076bec0b22d68c707898e903b2dcb0e;p=oota-llvm.git Remove a useless statement. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32660 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 8563216c506..5983204aa05 100644 --- a/lib/VMCore/Verifier.cpp +++ b/lib/VMCore/Verifier.cpp @@ -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)) {