[llvm-commits] CVS: llvm/test/Programs/Makefile.programs
Chris Lattner
lattner at cs.uiuc.edu
Fri Jul 25 17:38:01 PDT 2003
Changes in directory llvm/test/Programs:
Makefile.programs updated: 1.76 -> 1.77
---
Log message:
TRACINGDIFFS has never worked, remove it
Remove DOTRACING. It was previously set if TRACE or MTRACE was set, just test them instead
---
Diffs of the changes:
Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.76 llvm/test/Programs/Makefile.programs:1.77
--- llvm/test/Programs/Makefile.programs:1.76 Wed Jul 23 14:29:47 2003
+++ llvm/test/Programs/Makefile.programs Fri Jul 25 17:37:18 2003
@@ -7,7 +7,7 @@
#
# 1. The native platform compiler
# 2. LLVM Bytecode Compiler + LLI interpreter (if ENABLE_LLI is enabled)
-# 3. LLVM Bytecode Compiler + LLC Sparc machine code backend
+# 3. LLVM Bytecode Compiler + LLC static compiler
# 4. LLVM Bytecode Compiler + C Backend + Native Sun Compiler
# 5. LLVM Bytecode Compiler + LLI Just-In-Time Compiler
#
@@ -46,7 +46,6 @@
.PRECIOUS: Output/%.cbe Output/%.cbe.c Output/%.llvm.bc
.PRECIOUS: Output/%.linked.bc
.PRECIOUS: Output/%.run.bc Output/%.run.s Output/%.tracing Output/%.trace
-.PRECIOUS: Output/%.out-tracing Output/%.diff-tracing
PROGDIR = $(LEVEL)/test/Programs
@@ -121,7 +120,6 @@
CBEDIFFS := $(addsuffix .diff-cbe, $(PREFIXED_PROGRAMS_TO_TEST))
#Diffs for tracing framework
-TRACINGDIFFS := $(addsuffix .diff-tracing, $(PREFIXED_PROGRAMS_TO_TEST))
GETTIMECOMPARISON := $(addsuffix .performance, $(PREFIXED_PROGRAMS_TO_TEST))
# Build Program outputs:
@@ -129,7 +127,7 @@
.PRECIOUS: Output/%.out-nat Output/%.out-cbe Output/%.llc.bc
# Build diffs from the output...
-.PRECIOUS: Output/%.diff-lli Output/%.diff-jit Output/%.diff-tracing
+.PRECIOUS: Output/%.diff-lli Output/%.diff-jit
.PRECIOUS: Output/%.diff-llc Output/%.diff-cbe
@@ -146,7 +144,7 @@
DISABLE_DIFFS := 1
endif
-ifdef DOTRACING
+ifneq ($(TRACE)$(TRACEM),)
## When tracing is enabled do the following:
## -- disable output diffs
## -- generate llc output if not disabled
@@ -184,10 +182,6 @@
all:: $(TRACINGCODEGEN)
all:: $(TRACINGLLCCODEGEN)
all:: $(TRACINGEXECUTABLE)
-#all:: $(TRACINGDIFFS)
-# TRACINGDIFFS does not work - it wants to diff llc against tracing,
-# but DiffOutput always diffs against native, and GET_LLVM_TRACE disables
-# native.
all:: $(GETTIMECOMPARISON)
DISABLE_CBE = 1
@@ -405,10 +399,6 @@
$(PROGRAMS_TO_TEST:%=Output/%.diff-cbe): \
Output/%.diff-cbe: Output/%.out-nat Output/%.out-cbe
-$(DIFFPROG) cbe $* $(HIDEDIFF)
-
-$(PROGRAMS_TO_TEST:%=Output/%.diff-tracing): \
-Output/%.diff-tracing: Output/%.out-llc Output/%.out-tracing
- -$(DIFFPROG) tracing $* $(HIDEDIFF)
ifndef DISABLE_DIFFS
$(PROGRAMS_TO_TEST:%=Output/%.exe-lli): \
More information about the llvm-commits
mailing list