mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Remove debugging code, unneuter this functionality
llvm-svn: 17963
This commit is contained in:
parent
2d13429bbb
commit
027a1ea49c
@ -90,7 +90,7 @@ struct ListReducer {
|
||||
// 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 @@ struct ListReducer {
|
||||
Changed = true;
|
||||
}
|
||||
}
|
||||
// This can take a long time if left uncontrolled. For now, don't
|
||||
// iterate.
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user