diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-18 23:40:19 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-18 23:40:19 +0000 |
commit | c597a888c076bec0b22d68c707898e903b2dcb0e (patch) | |
tree | e7526c85439a419d07cf1957f393c1af6f0dc616 | |
parent | 722cb360690e5d7742b01a9f497fdb65bf8079d5 (diff) |
Remove a useless statement.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32660 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Verifier.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/VMCore/Verifier.cpp b/lib/VMCore/Verifier.cpp index 8563216c50..5983204aa0 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)) { |