summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2010-04-29 23:37:44 +0000
committerNick Lewycky <nicholas@mxc.ca>2010-04-29 23:37:44 +0000
commit83e3060f081f0309f36e2f551b5074656876ba1f (patch)
treec6f9df45157bb82bca8ebdc8646b1cef0f17123e
parent723169d8ecbd25ffa9b4887dbcac8484432c381a (diff)
downloadbcm5719-llvm-83e3060f081f0309f36e2f551b5074656876ba1f.tar.gz
bcm5719-llvm-83e3060f081f0309f36e2f551b5074656876ba1f.zip
The llc -f flag was removed.
llvm-svn: 102670
-rw-r--r--llvm/tools/bugpoint/Miscompilation.cpp2
-rw-r--r--llvm/tools/bugpoint/ToolRunner.cpp1
2 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/bugpoint/Miscompilation.cpp b/llvm/tools/bugpoint/Miscompilation.cpp
index 6af1f6a57ee..45bb745a9ac 100644
--- a/llvm/tools/bugpoint/Miscompilation.cpp
+++ b/llvm/tools/bugpoint/Miscompilation.cpp
@@ -1000,7 +1000,7 @@ bool BugDriver::debugCodeGenerator(std::string *Error) {
if (isExecutingJIT()) {
outs() << " lli -load " << SharedObject << " " << TestModuleBC.str();
} else {
- outs() << " llc -f " << TestModuleBC.str() << " -o " << TestModuleBC.str()
+ outs() << " llc " << TestModuleBC.str() << " -o " << TestModuleBC.str()
<< ".s\n";
outs() << " gcc " << SharedObject << " " << TestModuleBC.str()
<< ".s -o " << TestModuleBC.str() << ".exe";
diff --git a/llvm/tools/bugpoint/ToolRunner.cpp b/llvm/tools/bugpoint/ToolRunner.cpp
index 9c8c2f92d3b..7ade7784023 100644
--- a/llvm/tools/bugpoint/ToolRunner.cpp
+++ b/llvm/tools/bugpoint/ToolRunner.cpp
@@ -546,7 +546,6 @@ GCC::FileType CBE::OutputCode(const std::string &Bitcode,
LLCArgs.push_back("-o");
LLCArgs.push_back(OutputCFile.c_str()); // Output to the C file
LLCArgs.push_back("-march=c"); // Output C language
- LLCArgs.push_back("-f"); // Overwrite as necessary...
LLCArgs.push_back(Bitcode.c_str()); // This is the input bitcode
LLCArgs.push_back(0);
OpenPOWER on IntegriCloud