[llvm-commits] CVS: llvm-poolalloc/test/Makefile

Vikram Adve vadve at cs.uiuc.edu
Wed May 25 20:55:08 PDT 2005



Changes in directory llvm-poolalloc/test:

Makefile updated: 1.35 -> 1.36
---
Log message:

Add flag to use large problem size for ptrcomp target.


---
Diffs of the changes:  (+9 -3)

 Makefile |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)


Index: llvm-poolalloc/test/Makefile
diff -u llvm-poolalloc/test/Makefile:1.35 llvm-poolalloc/test/Makefile:1.36
--- llvm-poolalloc/test/Makefile:1.35	Wed May 25 21:43:05 2005
+++ llvm-poolalloc/test/Makefile	Wed May 25 22:54:01 2005
@@ -17,6 +17,12 @@
 STABLERUN :=
 endif
 
+ifndef NO_LARGE_SIZE
+LARGESIZE := LARGE_PROBLEM_SIZE=1
+else
+LARGESIZE :=
+endif
+
 
 LARGE_PROBLEM_SIZE_DIRS := \
    MultiSource/Benchmarks/llubenchmark \
@@ -176,7 +182,7 @@
 test::
 	(cd $(LLVM_OBJ_ROOT)/projects/llvm-test/$(SUBDIR); \
                PROJECT_DIR=$(PROJ_OBJ_ROOT) $(MAKE) -j1 TEST=poolalloc \
-                   $(STABLERUN) report report.html)
+                   $(LARGESIZE) $(STABLERUN) report report.html)
 	@printf "\a"; sleep 1; printf "\a"; sleep 1; printf "\a"
 
 pacompiletime::
@@ -188,7 +194,7 @@
 ptrcomp::
 	(cd $(LLVM_OBJ_ROOT)/projects/llvm-test/$(SUBDIR); \
                PROJECT_DIR=$(PROJ_OBJ_ROOT) $(MAKE) -j1 TEST=ptrcomp \
-                   $(STABLERUN) report report.html)
+                   $(LARGESIZE) $(STABLERUN) report report.html)
 	@printf "\a"; sleep 1; printf "\a"; sleep 1; printf "\a"
 
 vtl::
@@ -206,7 +212,7 @@
 optzn::
 	(cd $(LLVM_OBJ_ROOT)/projects/llvm-test/$(SUBDIR); \
                PROJECT_DIR=$(PROJ_OBJ_ROOT) $(MAKE) -j1 TEST=optzn \
-                   $(STABLERUN) test report report.csv)
+                   $(LARGESIZE) $(STABLERUN) test report report.csv)
 	@printf "\a"; sleep 1; printf "\a"; sleep 1; printf "\a"
 
 p4perf::






More information about the llvm-commits mailing list