[llvm-commits] [llvm] r80924 - /llvm/trunk/Makefile.rules

Dan Gohman gohman at apple.com
Thu Sep 3 09:11:53 PDT 2009


Author: djg
Date: Thu Sep  3 11:11:53 2009
New Revision: 80924

URL: http://llvm.org/viewvc/llvm-project?rev=80924&view=rev
Log:
Remove some unnecessary -f options.

Modified:
    llvm/trunk/Makefile.rules

Modified: llvm/trunk/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile.rules?rev=80924&r1=80923&r2=80924&view=diff

==============================================================================
--- llvm/trunk/Makefile.rules (original)
+++ llvm/trunk/Makefile.rules Thu Sep  3 11:11:53 2009
@@ -1370,12 +1370,12 @@
 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
 
 





More information about the llvm-commits mailing list