From abcd97dcd86860e1255fd1ad119b3827be4aab36 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 :) llvm-svn: 11600 --- llvm/lib/Support/ToolRunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Support/ToolRunner.cpp b/llvm/lib/Support/ToolRunner.cpp index 6a3327380635..5c0c5a19a413 100644 --- a/llvm/lib/Support/ToolRunner.cpp +++ b/llvm/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";