diff --git a/lib/Support/ToolRunner.cpp b/lib/Support/ToolRunner.cpp index 4a7be56461a..2ac4cc5afbb 100644 --- a/lib/Support/ToolRunner.cpp +++ b/lib/Support/ToolRunner.cpp @@ -78,7 +78,6 @@ int LLI::ExecuteProgram(const std::string &Bytecode, std::vector 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 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) { diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp index 4a7be56461a..2ac4cc5afbb 100644 --- a/tools/bugpoint/ToolRunner.cpp +++ b/tools/bugpoint/ToolRunner.cpp @@ -78,7 +78,6 @@ int LLI::ExecuteProgram(const std::string &Bytecode, std::vector 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 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) {