[llvm-commits] [llvm] r64399 - /llvm/trunk/tools/bugpoint/ToolRunner.cpp

Dan Gohman gohman at apple.com
Thu Feb 12 12:53:27 PST 2009


Author: djg
Date: Thu Feb 12 14:53:27 2009
New Revision: 64399

URL: http://llvm.org/viewvc/llvm-project?rev=64399&view=rev
Log:
Rename bugpoint's error message file so that if it somehow
gets left behind, it's less cryptic.

Modified:
    llvm/trunk/tools/bugpoint/ToolRunner.cpp

Modified: llvm/trunk/tools/bugpoint/ToolRunner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/ToolRunner.cpp?rev=64399&r1=64398&r2=64399&view=diff

==============================================================================
--- llvm/trunk/tools/bugpoint/ToolRunner.cpp (original)
+++ llvm/trunk/tools/bugpoint/ToolRunner.cpp Thu Feb 12 14:53:27 2009
@@ -80,7 +80,7 @@
   OS << "\n";
 
   // Rerun the compiler, capturing any error messages to print them.
-  sys::Path ErrorFilename("error_messages");
+  sys::Path ErrorFilename("bugpoint.program_error_messages");
   std::string ErrMsg;
   if (ErrorFilename.makeUnique(true, &ErrMsg)) {
     std::cerr << "Error making unique filename: " << ErrMsg << "\n";





More information about the llvm-commits mailing list