The llc -f flag was removed.
authorNick Lewycky <nicholas@mxc.ca>
Thu, 29 Apr 2010 23:37:44 +0000 (23:37 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Thu, 29 Apr 2010 23:37:44 +0000 (23:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102670 91177308-0d34-0410-b5e6-96231b3b80d8

tools/bugpoint/Miscompilation.cpp
tools/bugpoint/ToolRunner.cpp

index 6af1f6a57eeb3dc6c1d37ec600a00866f06752fe..45bb745a9acc0725ff65a6128af8413eac1681ec 100644 (file)
@@ -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";
index 9c8c2f92d3b899af75aa601b81a9798420981cfa..7ade77840237ca43c7fe80b4c306f12bcc43537b 100644 (file)
@@ -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);