[llvm-commits] CVS: llvm-test/MultiSource/Benchmarks/Olden/tsp/Makefile

Lauro Ramos Venancio lauro.venancio at gmail.com
Thu May 3 13:45:38 PDT 2007



Changes in directory llvm-test/MultiSource/Benchmarks/Olden/tsp:

Makefile updated: 1.7 -> 1.8
---
Log message:

Implement SMALL_PROBLEM_SIZE.


---
Diffs of the changes:  (+4 -0)

 Makefile |    4 ++++
 1 files changed, 4 insertions(+)


Index: llvm-test/MultiSource/Benchmarks/Olden/tsp/Makefile
diff -u llvm-test/MultiSource/Benchmarks/Olden/tsp/Makefile:1.7 llvm-test/MultiSource/Benchmarks/Olden/tsp/Makefile:1.8
--- llvm-test/MultiSource/Benchmarks/Olden/tsp/Makefile:1.7	Wed Sep  1 09:33:25 2004
+++ llvm-test/MultiSource/Benchmarks/Olden/tsp/Makefile	Thu May  3 15:45:19 2007
@@ -6,8 +6,12 @@
 ifdef LARGE_PROBLEM_SIZE
 RUN_OPTIONS = 2048000
 else
+ifdef SMALL_PROBLEM_SIZE
+RUN_OPTIONS = 10240
+else
 RUN_OPTIONS = 1024000
 endif
+endif
 
 include $(LEVEL)/MultiSource/Makefile.multisrc
 






More information about the llvm-commits mailing list