From: Dan Gohman Date: Thu, 12 Feb 2009 20:53:27 +0000 (+0000) Subject: Rename bugpoint's error message file so that if it somehow X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a971b294253cb848c0a640185f26459978c9ba41;p=oota-llvm.git Rename bugpoint's error message file so that if it somehow gets left behind, it's less cryptic. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64399 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp index d4cea9fa499..f6a151c3371 100644 --- a/tools/bugpoint/ToolRunner.cpp +++ b/tools/bugpoint/ToolRunner.cpp @@ -80,7 +80,7 @@ static void ProcessFailure(sys::Path ProgPath, const char** Args) { 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";