[llvm-commits] CVS: llvm/tools/bugpoint/Miscompilation.cpp
Chris Lattner
lattner at cs.uiuc.edu
Mon Mar 15 19:53:01 PST 2004
Changes in directory llvm/tools/bugpoint:
Miscompilation.cpp updated: 1.31 -> 1.32
---
Log message:
Fix thinko, and PR292
---
Diffs of the changes: (+1 -1)
Index: llvm/tools/bugpoint/Miscompilation.cpp
diff -u llvm/tools/bugpoint/Miscompilation.cpp:1.31 llvm/tools/bugpoint/Miscompilation.cpp:1.32
--- llvm/tools/bugpoint/Miscompilation.cpp:1.31 Sun Mar 14 16:08:00 2004
+++ llvm/tools/bugpoint/Miscompilation.cpp Mon Mar 15 19:51:54 2004
@@ -245,7 +245,7 @@
std::cout << "done.\n";
std::cout << " Checking to see if the merged program executes correctly: ";
- bool Broken = TestMergedProgram(BD, Optimized, ToNotOptimize, true);
+ bool Broken = TestMergedProgram(BD, Optimized, ToNotOptimize, false);
delete Optimized;
if (!Broken) {
std::cout << "yup: loop extraction masked the problem. Undoing.\n";
More information about the llvm-commits
mailing list