From 722ca7128541c0fd09ae3da92bde95b9925bb6a4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 18 Feb 2004 20:57:38 +0000 Subject: [PATCH] Don't yell. BUGPOINT should yell, not the tool runner :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11600 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/ToolRunner.cpp | 2 +- tools/bugpoint/ToolRunner.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Support/ToolRunner.cpp b/lib/Support/ToolRunner.cpp index 6a332738063..5c0c5a19a41 100644 --- a/lib/Support/ToolRunner.cpp +++ b/lib/Support/ToolRunner.cpp @@ -23,7 +23,7 @@ using namespace llvm; static void ProcessFailure(std::string ProgPath, const char** Args) { std::ostringstream OS; - OS << "\n*** Error running tool:\n"; + OS << "\nError running tool:\n"; for (const char **Arg = Args; *Arg; ++Arg) OS << " " << *Arg; OS << "\n"; diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp index 6a332738063..5c0c5a19a41 100644 --- a/tools/bugpoint/ToolRunner.cpp +++ b/tools/bugpoint/ToolRunner.cpp @@ -23,7 +23,7 @@ using namespace llvm; static void ProcessFailure(std::string ProgPath, const char** Args) { std::ostringstream OS; - OS << "\n*** Error running tool:\n"; + OS << "\nError running tool:\n"; for (const char **Arg = Args; *Arg; ++Arg) OS << " " << *Arg; OS << "\n"; -- 2.34.1