diff options
author | Chris Lattner <sabre@nondot.org> | 2002-09-19 21:46:03 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-09-19 21:46:03 +0000 |
commit | 4e6598b325c0bdc6287792372e8994e8e9670ae9 (patch) | |
tree | a5406959f5f71c55f8cb6d1f60cbcca79c6257d9 /llvm/test/Makefile.tests | |
parent | 1e860c917a0e2962a6473f4225eb52bae9725018 (diff) | |
download | bcm5719-llvm-4e6598b325c0bdc6287792372e8994e8e9670ae9.tar.gz bcm5719-llvm-4e6598b325c0bdc6287792372e8994e8e9670ae9.zip |
Reenable these options because they break testing on sparc without them.
Conditionalizing them on DISABLE_LLC means they aren't enabled under linux.
llvm-svn: 3837
Diffstat (limited to 'llvm/test/Makefile.tests')
-rw-r--r-- | llvm/test/Makefile.tests | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/llvm/test/Makefile.tests b/llvm/test/Makefile.tests index 4d38c302158..759c7dba21b 100644 --- a/llvm/test/Makefile.tests +++ b/llvm/test/Makefile.tests @@ -40,12 +40,15 @@ TESTRUNR = $(LEVEL)/test/TestRunner.sh # Native Tool Definitions NATGCC = /usr/dcs/software/supported/bin/gcc -## CC = /opt/SUNWspro/bin/cc -## AS = /opt/SUNWspro/bin/cc -## DIS = /usr/ccs/bin/dis -## CFLAGS += -g -xarch=v9 CP = /bin/cp -f +ifndef DISABLE_LLC +CC = /opt/SUNWspro/bin/cc +AS = /opt/SUNWspro/bin/cc +DIS = /usr/ccs/bin/dis +CFLAGS += -g -xarch=v9 +endif + ifeq ($(TRACE), yes) LLCFLAGS += -trace basicblock |