lli no longer takes the -quiet option!
authorChris Lattner <sabre@nondot.org>
Mon, 5 Apr 2004 20:28:41 +0000 (20:28 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 5 Apr 2004 20:28:41 +0000 (20:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12674 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/ToolRunner.cpp
tools/bugpoint/ToolRunner.cpp

index 4a7be56461a5cb19053460bf9da34d2bc5bee9b7..2ac4cc5afbbdd861ce7bbf1a57ce4a8b6092cab1 100644 (file)
@@ -78,7 +78,6 @@ int LLI::ExecuteProgram(const std::string &Bytecode,
 
   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 @@ int JIT::ExecuteProgram(const std::string &Bytecode,
   // 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) {
index 4a7be56461a5cb19053460bf9da34d2bc5bee9b7..2ac4cc5afbbdd861ce7bbf1a57ce4a8b6092cab1 100644 (file)
@@ -78,7 +78,6 @@ int LLI::ExecuteProgram(const std::string &Bytecode,
 
   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 @@ int JIT::ExecuteProgram(const std::string &Bytecode,
   // 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) {