summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorVikram S. Adve <vadve@cs.uiuc.edu>2003-06-04 14:24:52 +0000
committerVikram S. Adve <vadve@cs.uiuc.edu>2003-06-04 14:24:52 +0000
commitbae287671a60724ac55680b6996a402f3c0d698c (patch)
tree3520a45a7a742d7110ea2bae4f88bfc8f41fd554 /test/Makefile.tests
parent9271ade15bb1654fafe50e49e7f3079e86378bac (diff)
downloadllvm-bae287671a60724ac55680b6996a402f3c0d698c.tar.gz
llvm-bae287671a60724ac55680b6996a402f3c0d698c.tar.bz2
llvm-bae287671a60724ac55680b6996a402f3c0d698c.tar.xz
Modify tracing rules to use opt -trace[m] instead of llc -trace[m].
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6607 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index 91e466912d..6293946b9a 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -65,12 +65,13 @@ CP = /bin/cp -f
## 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