From: Chris Lattner Date: Wed, 18 Feb 2004 20:57:38 +0000 (+0000) Subject: Don't yell. BUGPOINT should yell, not the tool runner :) X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=722ca7128541c0fd09ae3da92bde95b9925bb6a4;p=oota-llvm.git 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 --- 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";