[llvm-commits] CVS: llvm/test/Programs/Makefile.programs
Nicholas Hildenbrandt
hldnbrnd at cs.uiuc.edu
Wed Oct 23 12:34:01 PDT 2002
Changes in directory llvm/test/Programs:
Makefile.programs updated: 1.19 -> 1.20
---
Log message:
Updated with the ability to just supress diffing of CBE, but still generate CBE code
---
Diffs of the changes:
Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.19 llvm/test/Programs/Makefile.programs:1.20
--- llvm/test/Programs/Makefile.programs:1.19 Tue Oct 15 14:49:52 2002
+++ llvm/test/Programs/Makefile.programs Wed Oct 23 12:33:24 2002
@@ -48,7 +48,8 @@
# Generated code for llc (which does not require the target platform)
LLCCODEGEN := $(addsuffix .llc.s, $(PREFIXED_PROGRAMS_TO_TEST))
-
+CBECODEGEN := $(addsuffix .cbe.c, $(PREFIXED_PROGRAMS_TO_TEST))
+
# Output produced by programs run
GCCOUTPUT := $(addsuffix .ll, $(addprefix Output/,$(Source:.c=)))
NATOUTPUT := $(addsuffix .out-nat, $(PREFIXED_PROGRAMS_TO_TEST))
@@ -89,6 +90,12 @@
endif
ifndef DISABLE_CBE
+all:: $(CBECODEGEN)
+else
+DISABLE_CBE_DIFFS = 1
+endif
+
+ifndef DISABLE_CBE_DIFFS
all:: $(CBEDIFFS)
endif
More information about the llvm-commits
mailing list