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

Chris Lattner lattner at cs.uiuc.edu
Mon Apr 5 15:29:01 PDT 2004


Changes in directory llvm/lib/Support:

ToolRunner.cpp updated: 1.21 -> 1.22

---
Log message:

lli no longer takes the -quiet option!


---
Diffs of the changes:  (+0 -2)

Index: llvm/lib/Support/ToolRunner.cpp
diff -u llvm/lib/Support/ToolRunner.cpp:1.21 llvm/lib/Support/ToolRunner.cpp:1.22
--- llvm/lib/Support/ToolRunner.cpp:1.21	Thu Feb 19 01:39:26 2004
+++ llvm/lib/Support/ToolRunner.cpp	Mon Apr  5 15:28:41 2004
@@ -78,7 +78,6 @@
 
   std::vector<const char*> LLIArgs;
   LLIArgs.push_back(LLIPath.c_str());
-  LLIArgs.push_back("-quiet");
   LLIArgs.push_back("-force-interpreter=true");
   LLIArgs.push_back(Bytecode.c_str());
   // Add optional parameters to the running program from Argv
@@ -195,7 +194,6 @@
   // Construct a vector of parameters, incorporating those from the command-line
   std::vector<const char*> JITArgs;
   JITArgs.push_back(LLIPath.c_str());
-  JITArgs.push_back("-quiet");
   JITArgs.push_back("-force-interpreter=false");
 
   for (unsigned i = 0, e = SharedLibs.size(); i != e; ++i) {





More information about the llvm-commits mailing list