summaryrefslogtreecommitdiff
path: root/tools/bugpoint/ListReducer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/bugpoint/ListReducer.h')
-rw-r--r--tools/bugpoint/ListReducer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/ListReducer.h b/tools/bugpoint/ListReducer.h
index 9e248ff1cc..2af1ae769d 100644
--- a/tools/bugpoint/ListReducer.h
+++ b/tools/bugpoint/ListReducer.h
@@ -90,7 +90,7 @@ struct ListReducer {
// could. If there is more two elements in the list, try deleting interior
// elements and testing that.
//
- if (TheList.size() > 2) {
+ if (0 && TheList.size() > 2) {
bool Changed = true;
std::vector<ElTy> EmptyList;
while (Changed) {