Remove debugging code, unneuter this functionality

llvm-svn: 17963
GitOrigin-RevId: 7fd27e2c353889c0902abe8f20deb908eaca2e02
diff --git a/tools/bugpoint/ListReducer.h b/tools/bugpoint/ListReducer.h
index 2af1ae7..4057a0f 100644
--- a/tools/bugpoint/ListReducer.h
+++ b/tools/bugpoint/ListReducer.h
@@ -90,7 +90,7 @@
     // could.  If there is more two elements in the list, try deleting interior
     // elements and testing that.
     //
-    if (0 && TheList.size() > 2) {
+    if (TheList.size() > 2) {
       bool Changed = true;
       std::vector<ElTy> EmptyList;
       while (Changed) {
@@ -107,6 +107,9 @@
             Changed = true;
           }
         }
+        // This can take a long time if left uncontrolled.  For now, don't 
+        // iterate.
+        break;
       }
     }