aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.rules
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-09-03 16:11:53 +0000
committerDan Gohman <gohman@apple.com>2009-09-03 16:11:53 +0000
commitbad01c4020d7f8048903b13ad2457323f5ab0359 (patch)
treecb8525dadf9234d2050365a3adbe2a0eceabdbd2 /Makefile.rules
parent5c42c875f7b8a18b3f3945bf52bbab2fa59450c3 (diff)
downloadexternal_llvm-bad01c4020d7f8048903b13ad2457323f5ab0359.zip
external_llvm-bad01c4020d7f8048903b13ad2457323f5ab0359.tar.gz
external_llvm-bad01c4020d7f8048903b13ad2457323f5ab0359.tar.bz2
Remove some unnecessary -f options.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80924 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.rules b/Makefile.rules
index d96838e..f697b2d 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -1370,12 +1370,12 @@ $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
ifdef DEBUG_RUNTIME
$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
- $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@ -f
+ $(Verb) $(LLVMAS) $< -o - | $(LOPT) -std-compile-opts -o $@
else
$(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LLVMAS) $(LOPT)
$(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
$(Verb) $(LLVMAS) $< -o - | \
- $(LOPT) -std-compile-opts -strip-debug -o $@ -f
+ $(LOPT) -std-compile-opts -strip-debug -o $@
endif