[llvm-commits] CVS: llvm/test/Makefile.tests

Vikram Adve vadve at cs.uiuc.edu
Tue Jul 8 18:41:01 PDT 2003


Changes in directory llvm/test:

Makefile.tests updated: 1.69 -> 1.70

---
Log message:

Simplified DOTRACING flag.


---
Diffs of the changes:

Index: llvm/test/Makefile.tests
diff -u llvm/test/Makefile.tests:1.69 llvm/test/Makefile.tests:1.70
--- llvm/test/Makefile.tests:1.69	Tue Jul  8 13:39:51 2003
+++ llvm/test/Makefile.tests	Tue Jul  8 18:40:48 2003
@@ -65,6 +65,7 @@
 ## If TRACE or TRACEM is "yes", set the appropriate llc flag (-trace or -tracem)
 ## mark that tracing on, and set the TRACELIBS variable.
 TRACEFLAGS = 
+DOTRACING  =
 ifeq ($(TRACE), yes)
     TRACEFLAGS += -trace
     DOTRACING = yes
@@ -74,7 +75,7 @@
 	DOTRACING = yes
     endif
 endif
-ifeq ($(DOTRACING), yes)
+ifdef DOTRACING
     TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
 endif
 





More information about the llvm-commits mailing list