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

Chris Lattner lattner at cs.uiuc.edu
Wed Feb 18 15:06:43 PST 2004


Changes in directory llvm/tools/bugpoint:

BugDriver.cpp updated: 1.23 -> 1.24

---
Log message:

ctor arguments changed order


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

Index: llvm/tools/bugpoint/BugDriver.cpp
diff -u llvm/tools/bugpoint/BugDriver.cpp:1.23 llvm/tools/bugpoint/BugDriver.cpp:1.24
--- llvm/tools/bugpoint/BugDriver.cpp:1.23	Wed Feb 18 11:17:10 2004
+++ llvm/tools/bugpoint/BugDriver.cpp	Wed Feb 18 14:22:25 2004
@@ -151,7 +151,7 @@
 
   // Make sure the reference output file gets deleted on exit from this
   // function, if appropriate.
-  FileRemover RemoverInstance(CreatedOutput, ReferenceOutputFile);
+  FileRemover RemoverInstance(ReferenceOutputFile, CreatedOutput);
 
   // Diff the output of the raw program against the reference output.  If it
   // matches, then we have a miscompilation bug.





More information about the llvm-commits mailing list