[llvm-commits] [llvm] r102670 - in /llvm/trunk/tools/bugpoint: Miscompilation.cpp ToolRunner.cpp

Nick Lewycky nicholas at mxc.ca
Thu Apr 29 16:37:44 PDT 2010


Author: nicholas
Date: Thu Apr 29 18:37:44 2010
New Revision: 102670

URL: http://llvm.org/viewvc/llvm-project?rev=102670&view=rev
Log:
The llc -f flag was removed.

Modified:
    llvm/trunk/tools/bugpoint/Miscompilation.cpp
    llvm/trunk/tools/bugpoint/ToolRunner.cpp

Modified: llvm/trunk/tools/bugpoint/Miscompilation.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/Miscompilation.cpp?rev=102670&r1=102669&r2=102670&view=diff
==============================================================================
--- llvm/trunk/tools/bugpoint/Miscompilation.cpp (original)
+++ llvm/trunk/tools/bugpoint/Miscompilation.cpp Thu Apr 29 18:37:44 2010
@@ -1000,7 +1000,7 @@
   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";

Modified: llvm/trunk/tools/bugpoint/ToolRunner.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/ToolRunner.cpp?rev=102670&r1=102669&r2=102670&view=diff
==============================================================================
--- llvm/trunk/tools/bugpoint/ToolRunner.cpp (original)
+++ llvm/trunk/tools/bugpoint/ToolRunner.cpp Thu Apr 29 18:37:44 2010
@@ -546,7 +546,6 @@
   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);
 





More information about the llvm-commits mailing list