summaryrefslogtreecommitdiff
path: root/test/Makefile.tests
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-07-25 20:25:31 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-07-25 20:25:31 +0000
commit1a9e24844fc8e9f147d0722c7384523e843bd5bb (patch)
treed90e8ea0b323339736924ec94e0db7a33d8927d8 /test/Makefile.tests
parentcb420a4bc066b0b85e50b0c362ae20519d28788c (diff)
downloadllvm-1a9e24844fc8e9f147d0722c7384523e843bd5bb.tar.gz
llvm-1a9e24844fc8e9f147d0722c7384523e843bd5bb.tar.bz2
llvm-1a9e24844fc8e9f147d0722c7384523e843bd5bb.tar.xz
Remove dead code from the makefile build system.
Back in r140220 we removed the autoconf code that would set LLVMCC_OPTION since it was only used by the test-suite. This patch now removes code that would only be used if LLVMCC_OPTION was set. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187154 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Makefile.tests')
-rw-r--r--test/Makefile.tests12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/Makefile.tests b/test/Makefile.tests
index c60c90c075..b2e53006bf 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -47,18 +47,6 @@ clean::
$(RM) -f a.out core
$(RM) -rf Output/
-# Compile from X.c to Output/X.ll
-Output/%.ll: %.c $(LCC1) Output/.dir $(INCLUDES)
- -$(LLVMCC) $(CPPFLAGS) $(LCCFLAGS) -S $< -o $@
-
-# Compile from X.cpp to Output/X.ll
-Output/%.ll: %.cpp $(LCC1XX) Output/.dir $(INCLUDES)
- -$(LLVMCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
-
-# Compile from X.cc to Output/X.ll
-Output/%.ll: %.cc $(LCC1XX) Output/.dir $(INCLUDES)
- -$(LLVMCXX) $(CPPFLAGS) $(LCXXFLAGS) -S $< -o $@
-
# LLVM Assemble from Output/X.ll to Output/X.bc. Output/X.ll must have come
# from GCC output, so use GCCAS.
#