summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-11 18:49:10 +0000
committerChris Lattner <sabre@nondot.org>2003-05-11 18:49:10 +0000
commit5047688ee5b38cd2266a66d1ad1f6095a8bff8de (patch)
treebeb62425780916b0f502500f7a68a732f72af639 /test/Makefile.tests
parentfb311eb7757fbb6f8a6440148eb6124ef4ea5632 (diff)
downloadllvm-5047688ee5b38cd2266a66d1ad1f6095a8bff8de.tar.gz
llvm-5047688ee5b38cd2266a66d1ad1f6095a8bff8de.tar.bz2
llvm-5047688ee5b38cd2266a66d1ad1f6095a8bff8de.tar.xz
* Remove dead hunk of makefile fragment for dealing with sun compiler
* Move LLC code gen stuff into test/Programs/Makefile.programs git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6089 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index 6e2f5b9586..d523bc9ad3 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -67,14 +67,6 @@ TESTRUNR = $(LEVEL)/test/TestRunner.sh
NATGCC = /usr/dcs/software/supported/bin/gcc
CP = /bin/cp -f
-ifndef DISABLE_LLC_DIFFS
-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
LLCLIBS := -L$(LEVEL)/test/Libraries/Output -linstr64
@@ -107,16 +99,6 @@ Output/%.bc: Output/%.ll $(LGCCAS)
Output/%.bc: %.ll $(LAS) Output/.dir
$(LAS) -f $< -o $@
-# Compile a linked program to machine code for this processor.
-#
-Output/%.llc.s: Output/%.llvm.bc $(LLC)
- $(LLC) $(LLCFLAGS) -f $< -o $@
-
-# Assemble (and link) an LLVM-linked program using the system assembler...
-#
-Output/%.llc: Output/%.llc.s
- $(CC) $(CFLAGS) $< $(LLCLIBS) -o $@
-
#
# Testing versions of provided utilities...
#