[llvm-commits] CVS: poolalloc/test/TEST.poolalloc.Makefile
    Chris Lattner 
    lattner at cs.uiuc.edu
       
    Thu Feb 26 02:05:42 PST 2004
    
    
  
Changes in directory poolalloc/test:
TEST.poolalloc.Makefile updated: 1.14 -> 1.15
---
Log message:
correct dependencies
---
Diffs of the changes:  (+2 -2)
Index: poolalloc/test/TEST.poolalloc.Makefile
diff -u poolalloc/test/TEST.poolalloc.Makefile:1.14 poolalloc/test/TEST.poolalloc.Makefile:1.15
--- poolalloc/test/TEST.poolalloc.Makefile:1.14	Tue Feb 24 15:02:05 2004
+++ poolalloc/test/TEST.poolalloc.Makefile	Thu Feb 26 02:04:07 2004
@@ -31,7 +31,7 @@
 # This rule runs the pool allocator on the .llvm.bc file to produce a new .bc
 # file
 $(PROGRAMS_TO_TEST:%=Output/%.$(TEST).transformed.bc): \
-Output/%.$(TEST).transformed.bc: Output/%.llvm.bc $(PA_SO)
+Output/%.$(TEST).transformed.bc: Output/%.llvm.bc $(PA_SO) $(LOPT)
 	- at rm -f $(CURDIR)/$@.info
 	-$(OPT_PA_STATS) -q -poolalloc $(EXTRA_PA_FLAGS) -globaldce -ipconstprop -deadargelim $< -o $@ -f 2>&1 > $@.out
 
@@ -100,4 +100,4 @@
 	@echo "---------------------------------------------------------------"
 	@cat $<
 
-REPORT_DEPENDENCIES := $(PA_RT_O) $(PA_SO) $(PROGRAMS_TO_TEST:%=Output/%.llvm.bc) $(LLC)
+REPORT_DEPENDENCIES := $(PA_RT_O) $(PA_SO) $(PROGRAMS_TO_TEST:%=Output/%.llvm.bc) $(LLC) $(LOPT)
    
    
More information about the llvm-commits
mailing list