[llvm-commits] CVS: llvm-test/External/SPEC/CINT2000/176.gcc/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Tue Apr 12 12:30:34 PDT 2005
Changes in directory llvm-test/External/SPEC/CINT2000/176.gcc:
Makefile updated: 1.12 -> 1.13
---
Log message:
fix large problem size
---
Diffs of the changes: (+8 -3)
Makefile | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
Index: llvm-test/External/SPEC/CINT2000/176.gcc/Makefile
diff -u llvm-test/External/SPEC/CINT2000/176.gcc/Makefile:1.12 llvm-test/External/SPEC/CINT2000/176.gcc/Makefile:1.13
--- llvm-test/External/SPEC/CINT2000/176.gcc/Makefile:1.12 Mon Apr 4 14:59:52 2005
+++ llvm-test/External/SPEC/CINT2000/176.gcc/Makefile Tue Apr 12 14:30:17 2005
@@ -1,14 +1,19 @@
LEVEL = ../../../..
+include ../../Makefile.spec2000
+
ifeq ($(RUN_TYPE),test)
RUN_OPTIONS = cccp.i -o - -quiet
STDOUT_FILENAME = cccp.s
-else
+endif
+ifeq ($(RUN_TYPE),train)
RUN_OPTIONS = cp-decl.i -o - -quiet
STDOUT_FILENAME = cp-decl.s
endif
-
-include ../../Makefile.spec2000
+ifeq ($(RUN_TYPE),ref)
+RUN_OPTIONS = 200.i -o - -quiet
+STDOUT_FILENAME = 200.s
+endif
ifeq ($(ENDIAN),big)
CPPFLAGS += -DHOST_WORDS_BIG_ENDIAN
More information about the llvm-commits
mailing list