[llvm-commits] CVS: llvm/tools/bugpoint/Miscompilation.cpp

Chris Lattner lattner at cs.uiuc.edu
Fri Apr 9 17:29:01 PDT 2004


Changes in directory llvm/tools/bugpoint:

Miscompilation.cpp updated: 1.37 -> 1.38

---
Log message:

Fix an obvious bug in the refactoring I did a few days ago


---
Diffs of the changes:  (+1 -1)

Index: llvm/tools/bugpoint/Miscompilation.cpp
diff -u llvm/tools/bugpoint/Miscompilation.cpp:1.37 llvm/tools/bugpoint/Miscompilation.cpp:1.38
--- llvm/tools/bugpoint/Miscompilation.cpp:1.37	Mon Apr  5 17:58:16 2004
+++ llvm/tools/bugpoint/Miscompilation.cpp	Fri Apr  9 17:28:33 2004
@@ -347,7 +347,7 @@
   delete Test;
 
   std::cout << "  Checking to see if the merged program executes correctly: ";
-  bool Broken = TestMergedProgram(BD, Test, Safe, true);
+  bool Broken = TestMergedProgram(BD, Optimized, Safe, true);
   std::cout << (Broken ? " nope.\n" : " yup.\n");
   return Broken;
 }





More information about the llvm-commits mailing list