[llvm-commits] CVS: llvm/test/Programs/TEST.nightly.Makefile

Brian Gaeke gaeke at cs.uiuc.edu
Thu Jun 3 14:49:02 PDT 2004


Changes in directory llvm/test/Programs:

TEST.nightly.Makefile updated: 1.29 -> 1.30

---
Log message:

Testing out a fix for the Interpreter that will not die


---
Diffs of the changes:  (+10 -1)

Index: llvm/test/Programs/TEST.nightly.Makefile
diff -u llvm/test/Programs/TEST.nightly.Makefile:1.29 llvm/test/Programs/TEST.nightly.Makefile:1.30
--- llvm/test/Programs/TEST.nightly.Makefile:1.29	Wed May 19 16:17:35 2004
+++ llvm/test/Programs/TEST.nightly.Makefile	Thu Jun  3 14:45:00 2004
@@ -10,7 +10,16 @@
 RELDIR  := $(subst $(PROGDIR),,$(CURDIR))
 CFLAGS  := -O3
 
-REPORTS_TO_GEN := compile nat llc cbe jit
+REPORTS_TO_GEN := compile nat
+ifndef DISABLE_LLC
+REPORTS_TO_GEN +=  llc
+endif
+ifndef DISABLE_JIT
+REPORTS_TO_GEN +=  jit
+endif
+ifndef DISABLE_CBE
+REPORTS_TO_GEN +=  cbe
+endif
 ifdef ENABLE_LINEARSCAN
 REPORTS_TO_GEN += llc-ls jit-ls
 endif





More information about the llvm-commits mailing list