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

Vikram Adve vadve at cs.uiuc.edu
Wed Jun 4 09:26:01 PDT 2003


Changes in directory llvm/test:

Makefile.tests updated: 1.60 -> 1.61

---
Log message:

Modify tracing rules to use opt -trace[m] instead of llc -trace[m].


---
Diffs of the changes:

Index: llvm/test/Makefile.tests
diff -u llvm/test/Makefile.tests:1.60 llvm/test/Makefile.tests:1.61
--- llvm/test/Makefile.tests:1.60	Tue Jun  3 13:56:53 2003
+++ llvm/test/Makefile.tests	Wed Jun  4 09:24:50 2003
@@ -65,12 +65,13 @@
 
 ## If TRACE or TRACEM is "yes", set the appropriate llc flag (-trace or -tracem)
 ## mark that tracing on, and set the TRACELIBS variable.
+TRACEFLAGS = 
 ifeq ($(TRACE), yes)
-    LLCFLAGS += -trace
+    TRACEFLAGS += -trace
     DOTRACING = yes
 else
     ifeq ($(TRACEM), yes)
-	LLCFLAGS += -tracem
+	TRACEFLAGS += -tracem
 	DOTRACING = yes
     endif
 endif





More information about the llvm-commits mailing list