[llvm-commits] CVS: llvm/lib/Support/ToolRunner.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed Feb 18 15:18:52 PST 2004


Changes in directory llvm/lib/Support:

ToolRunner.cpp updated: 1.17 -> 1.18

---
Log message:

Don't yell.  BUGPOINT should yell, not the tool runner :)


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Support/ToolRunner.cpp
diff -u llvm/lib/Support/ToolRunner.cpp:1.17 llvm/lib/Support/ToolRunner.cpp:1.18
--- llvm/lib/Support/ToolRunner.cpp:1.17	Wed Feb 18 14:38:00 2004
+++ llvm/lib/Support/ToolRunner.cpp	Wed Feb 18 14:57:38 2004
@@ -23,7 +23,7 @@
 
 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";





More information about the llvm-commits mailing list