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

Reid Spencer reid at x10sys.com
Mon Dec 20 11:16:23 PST 2004



Changes in directory llvm/tools/bugpoint:

BugDriver.cpp updated: 1.40 -> 1.41
---
Log message:

Allow compilers that can't distinguish between a class instantiation and
the declaration of a function to compile this.


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

Index: llvm/tools/bugpoint/BugDriver.cpp
diff -u llvm/tools/bugpoint/BugDriver.cpp:1.40 llvm/tools/bugpoint/BugDriver.cpp:1.41
--- llvm/tools/bugpoint/BugDriver.cpp:1.40	Thu Dec 16 17:04:20 2004
+++ llvm/tools/bugpoint/BugDriver.cpp	Mon Dec 20 13:16:12 2004
@@ -175,7 +175,8 @@
 
   // Make sure the reference output file gets deleted on exit from this
   // function, if appropriate.
-  FileRemover RemoverInstance(sys::Path(ReferenceOutputFile), CreatedOutput);
+  sys::Path ROF(ReferenceOutputFile);
+  FileRemover RemoverInstance(ROF, 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