[llvm-commits] CVS: llvm-test/External/SPEC/CFP2000/Makefile

Chris Lattner lattner at cs.uiuc.edu
Wed Jul 20 10:07:38 PDT 2005



Changes in directory llvm-test/External/SPEC/CFP2000:

Makefile updated: 1.11 -> 1.12
---
Log message:

If we have NAG Fortran, run ALL of the CFP2000 tests


---
Diffs of the changes:  (+18 -2)

 Makefile |   20 ++++++++++++++++++--
 1 files changed, 18 insertions(+), 2 deletions(-)


Index: llvm-test/External/SPEC/CFP2000/Makefile
diff -u llvm-test/External/SPEC/CFP2000/Makefile:1.11 llvm-test/External/SPEC/CFP2000/Makefile:1.12
--- llvm-test/External/SPEC/CFP2000/Makefile:1.11	Tue Mar 15 14:31:02 2005
+++ llvm-test/External/SPEC/CFP2000/Makefile	Wed Jul 20 12:07:27 2005
@@ -1,24 +1,40 @@
 LEVEL = ../../..
+
 include $(LEVEL)/Makefile.config
 
+## C Programs
 PARALLEL_DIRS :=   \
 	177.mesa   \
 	179.art    \
 	183.equake \
 	188.ammp
 
+ifdef USE_F95
+PARALLEL_DIRS += \
+        168.wupwise \
+        171.swim    \
+        172.mgrid   \
+        173.applu   \
+        178.galgel  \
+	187.facerec \
+	189.lucas   \
+	191.fma3d   \
+        200.sixtrack \
+        301.apsi
+else
+ifdef USE_F2C
+
 # These are f90 and hence cannot be converted with f2c:
 # 178.galgel, 187.facerec, 189.lucas, 191.fma3d
 #
 # These are broken with f2c: output does not compile natively
 # 200.sixtrack, 301.apsi
-
-ifdef USE_F2C
 PARALLEL_DIRS += \
 	168.wupwise \
 	171.swim    \
 	172.mgrid   \
 	173.applu
 endif
+endif   # End USE_F95
 
 include $(LEVEL)/Makefile.programs






More information about the llvm-commits mailing list