[llvm-commits] CVS: llvm/test/Libraries/Makefile.libs

Chris Lattner lattner at cs.uiuc.edu
Thu May 29 10:17:00 PDT 2003


Changes in directory llvm/test/Libraries:

Makefile.libs updated: 1.6 -> 1.7

---
Log message:

Run more post-link xforms


---
Diffs of the changes:

Index: llvm/test/Libraries/Makefile.libs
diff -u llvm/test/Libraries/Makefile.libs:1.6 llvm/test/Libraries/Makefile.libs:1.7
--- llvm/test/Libraries/Makefile.libs:1.6	Thu May 22 15:27:30 2003
+++ llvm/test/Libraries/Makefile.libs	Thu May 29 10:16:45 2003
@@ -31,10 +31,13 @@
 LLINK_OPTS += -internalize -internalize-public-api-list=$(EXPORTED_SYMBOL_LIST)
 endif
 
+# Standard set of postlink optimizations...
+LLINK_OPTS +=  -inline -globaldce -funcresolve -deadtypeelim -instcombine -simplifycfg
+
 # Link the library, then perform postlink optimization...
 $(DESTLIBNAME): $(DESTLIBDIR)/.dir $(LObjects) $(LLINK) $(LOPT)
 	$(LLINK) -f $(LObjects) $(LDFLAGS) | \
-	 $(LOPT) -f -q -funcresolve -deadtypeelim $(LLINK_OPTS) -globaldce -o $@
+	 $(LOPT) -f -q $(LLINK_OPTS) -o $@
 
 # Install target for libraries: Copy into the gcc install directory.
 #





More information about the llvm-commits mailing list