[llvm-commits] [poolalloc] r110859 - /poolalloc/trunk/test/TEST.poolalloc.Makefile
John Criswell
criswell at uiuc.edu
Wed Aug 11 14:38:02 PDT 2010
Author: criswell
Date: Wed Aug 11 16:38:02 2010
New Revision: 110859
URL: http://llvm.org/viewvc/llvm-project?rev=110859&view=rev
Log:
Load DSA whenever we load the DSA Assistantance library.
The devirtualizer pass uses DSA.
Modified:
poolalloc/trunk/test/TEST.poolalloc.Makefile
Modified: poolalloc/trunk/test/TEST.poolalloc.Makefile
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/test/TEST.poolalloc.Makefile?rev=110859&r1=110858&r2=110859&view=diff
==============================================================================
--- poolalloc/trunk/test/TEST.poolalloc.Makefile (original)
+++ poolalloc/trunk/test/TEST.poolalloc.Makefile Wed Aug 11 16:38:02 2010
@@ -54,8 +54,8 @@
-$(LLVMLD) -link-as-library $< $(PA_PRE_RT) -o $@
$(PROGRAMS_TO_TEST:%=Output/%.base.bc): \
-Output/%.base.bc: Output/%.temp.bc $(LOPT) $(ASSIST_SO)
- -$(LOPT) -load $(ASSIST_SO) -instnamer -internalize -indclone -funcspec -ipsccp -deadargelim -instcombine -globaldce -stats $< -f -o $@
+Output/%.base.bc: Output/%.temp.bc $(LOPT) $(ASSIST_SO) $(DSA_SO)
+ -$(LOPT) -load $(DSA_SO) -load $(ASSIST_SO) -instnamer -internalize -indclone -funcspec -ipsccp -deadargelim -instcombine -globaldce -stats $< -f -o $@
# This rule runs the pool allocator on the .base.bc file to produce a new .bc
# file
More information about the llvm-commits
mailing list