summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-02-12 20:53:27 +0000
committerDan Gohman <gohman@apple.com>2009-02-12 20:53:27 +0000
commita971b294253cb848c0a640185f26459978c9ba41 (patch)
tree976d626d6c00733316443acb266f0ac4bc5a3c6e /tools
parentc83324682f3409c15dad992cd62928426c9ad83d (diff)
downloadllvm-a971b294253cb848c0a640185f26459978c9ba41.tar.gz
llvm-a971b294253cb848c0a640185f26459978c9ba41.tar.bz2
llvm-a971b294253cb848c0a640185f26459978c9ba41.tar.xz
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
Diffstat (limited to 'tools')
-rw-r--r--tools/bugpoint/ToolRunner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp
index d4cea9fa49..f6a151c337 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";