Remove some unnecessary -f options.
authorDan Gohman <gohman@apple.com>
Thu, 3 Sep 2009 16:11:53 +0000 (16:11 +0000)
committerDan Gohman <gohman@apple.com>
Thu, 3 Sep 2009 16:11:53 +0000 (16:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80924 91177308-0d34-0410-b5e6-96231b3b80d8

Makefile.rules

index d96838e2d2307cf086c8c75d510b8528a8173d81..f697b2d641913451f5ce0afd613c379a809396e5 100644 (file)
@@ -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