Simplified DOTRACING flag.

llvm-svn: 7135
This commit is contained in:
Vikram S. Adve 2003-07-08 23:40:48 +00:00
parent 71139f24d0
commit fa6ede03b1
1 changed files with 2 additions and 1 deletions

View File

@ -65,6 +65,7 @@ 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 =
DOTRACING =
ifeq ($(TRACE), yes)
TRACEFLAGS += -trace
DOTRACING = yes
@ -74,7 +75,7 @@ else
DOTRACING = yes
endif
endif
ifeq ($(DOTRACING), yes)
ifdef DOTRACING
TRACELIBS := -L$(LEVEL)/test/Libraries/Output -linstr.$(ARCH)
endif