aboutsummaryrefslogtreecommitdiffstats
path: root/tools/bugpoint/ToolRunner.cpp
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
commit8d0e1bcc921c942e979b0925051c663590bd618f (patch)
tree8105c20e508fb46d61cc85dadcddcb468ac9286c /tools/bugpoint/ToolRunner.cpp
parentffce6f134386e757b10fcab96309ae3a8e421fd5 (diff)
downloadexternal_llvm-8d0e1bcc921c942e979b0925051c663590bd618f.zip
external_llvm-8d0e1bcc921c942e979b0925051c663590bd618f.tar.gz
external_llvm-8d0e1bcc921c942e979b0925051c663590bd618f.tar.bz2
The llc -f flag was removed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@102670 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ToolRunner.cpp')
-rw-r--r--tools/bugpoint/ToolRunner.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp
index 9c8c2f9..7ade778 100644
--- a/tools/bugpoint/ToolRunner.cpp
+++ b/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);