diff options
author | Chris Lattner <sabre@nondot.org> | 2004-04-05 20:28:41 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-04-05 20:28:41 +0000 |
commit | b0d1e9d02eda5d6e712c78fc69ec1510ae27c34f (patch) | |
tree | 885765788edd9da951dc5e399a4a3748c10f1ae8 /llvm/lib/Support | |
parent | c97b7b2285d5559cfed277b514ac3a5c87167d7a (diff) | |
download | bcm5719-llvm-b0d1e9d02eda5d6e712c78fc69ec1510ae27c34f.tar.gz bcm5719-llvm-b0d1e9d02eda5d6e712c78fc69ec1510ae27c34f.zip |
lli no longer takes the -quiet option!
llvm-svn: 12674
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/ToolRunner.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Support/ToolRunner.cpp b/llvm/lib/Support/ToolRunner.cpp index 4a7be56461a..2ac4cc5afbb 100644 --- a/llvm/lib/Support/ToolRunner.cpp +++ b/llvm/lib/Support/ToolRunner.cpp @@ -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) { |