Changes in directory llvm-test/External/SPEC:
Makefile.spec2000 updated: 1.8 -> 1.9 Makefile.spec2006 updated: 1.2 -> 1.3 Makefile.spec95 updated: 1.11 -> 1.12 --- Log message: Implement SMALL_PROBLEM_SIZE. --- Diffs of the changes: (+15 -3) Makefile.spec2000 | 4 ++++ Makefile.spec2006 | 10 +++++++--- Makefile.spec95 | 4 ++++ 3 files changed, 15 insertions(+), 3 deletions(-) Index: llvm-test/External/SPEC/Makefile.spec2000 diff -u llvm-test/External/SPEC/Makefile.spec2000:1.8 llvm-test/External/SPEC/Makefile.spec2000:1.9 --- llvm-test/External/SPEC/Makefile.spec2000:1.8 Tue Nov 28 18:47:17 2006 +++ llvm-test/External/SPEC/Makefile.spec2000 Thu May 3 18:08:37 2007 @@ -12,12 +12,16 @@ # RUN_TYPE - Either ref, test, or train. May be specified on the command line. # individual tests may override this to provide better input sizes ifndef RUN_TYPE +ifdef SMALL_PROBLEM_SIZE +RUN_TYPE := test +else ifdef LARGE_PROBLEM_SIZE RUN_TYPE := ref else RUN_TYPE := train endif endif +endif include $(LEVEL)/External/SPEC/Makefile.spec.config include $(LEVEL)/External/SPEC/Makefile.spec Index: llvm-test/External/SPEC/Makefile.spec2006 diff -u llvm-test/External/SPEC/Makefile.spec2006:1.2 llvm-test/External/SPEC/Makefile.spec2006:1.3 --- llvm-test/External/SPEC/Makefile.spec2006:1.2 Tue Nov 28 18:47:17 2006 +++ llvm-test/External/SPEC/Makefile.spec2006 Thu May 3 18:08:37 2007 @@ -12,10 +12,14 @@ # RUN_TYPE - Either ref, test, or train. May be specified on the command line. # Individual tests may override this to provide better input sizes. ifndef RUN_TYPE -ifdef LARGE_PROBLEM_SIZE - RUN_TYPE := train -else +ifdef SMALL_PROBLEM_SIZE RUN_TYPE := test +else + ifdef LARGE_PROBLEM_SIZE + RUN_TYPE := train + else + RUN_TYPE := test + endif endif endif Index: llvm-test/External/SPEC/Makefile.spec95 diff -u llvm-test/External/SPEC/Makefile.spec95:1.11 llvm-test/External/SPEC/Makefile.spec95:1.12 --- llvm-test/External/SPEC/Makefile.spec95:1.11 Tue Nov 28 18:47:17 2006 +++ llvm-test/External/SPEC/Makefile.spec95 Thu May 3 18:08:37 2007 @@ -12,12 +12,16 @@ # RUN_TYPE - Either ref, test, or train. May be specified on the command line. # individual tests may override this to provide better input sizes ifndef RUN_TYPE +ifdef SMALL_PROBLEM_SIZE +RUN_TYPE := test +else ifdef LARGE_PROBLEM_SIZE RUN_TYPE := ref else RUN_TYPE := train endif endif +endif include $(LEVEL)/External/SPEC/Makefile.spec.config include $(LEVEL)/External/SPEC/Makefile.spec _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits