From a971b294253cb848c0a640185f26459978c9ba41 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 12 Feb 2009 20:53:27 +0000 Subject: [PATCH] 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 --- tools/bugpoint/ToolRunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.34.1