[llvm-commits] CVS: llvm/lib/VMCore/Verifier.cpp
Reid Spencer
reid at x10sys.com
Mon Dec 18 15:40:34 PST 2006
Changes in directory llvm/lib/VMCore:
Verifier.cpp updated: 1.175 -> 1.176
---
Log message:
Remove a useless statement.
---
Diffs of the changes: (+0 -1)
Verifier.cpp | 1 -
1 files changed, 1 deletion(-)
Index: llvm/lib/VMCore/Verifier.cpp
diff -u llvm/lib/VMCore/Verifier.cpp:1.175 llvm/lib/VMCore/Verifier.cpp:1.176
--- llvm/lib/VMCore/Verifier.cpp:1.175 Mon Dec 18 15:56:29 2006
+++ llvm/lib/VMCore/Verifier.cpp Mon Dec 18 17:40:19 2006
@@ -922,7 +922,6 @@
// '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)) {
More information about the llvm-commits
mailing list