aboutsummaryrefslogtreecommitdiffstats
path: root/test/LLC/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/LLC/Makefile')
-rw-r--r--test/LLC/Makefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/LLC/Makefile b/test/LLC/Makefile
deleted file mode 100644
index 3c07cd0..0000000
--- a/test/LLC/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-# test/Regression/LLC/Makefile
-#
-# This directory contains regression tests for the LLVM sparc backend.
-#
-LEVEL = ../../..
-include $(LEVEL)/test/Makefile.tests
-
-# Only .ll tests here. C tests are run via Makefile.singlesrc above.
-#
-LL_TESTS := $(wildcard *.ll)
-LLX_TESTS := $(wildcard *.llx)
-
-all:: $(addprefix Output/, $(LL_TESTS:%.ll=%.ts))
-all:: $(addprefix Output/, $(LLX_TESTS:%.llx=%.llx.out))
-
-Output/%.ts: Output/%.bc $(LLC) Output/.dir
- @echo "======== Compiling $< =========="
- $(LLC) -f $< -o $@ || \
- ( rm -f $@; $(FAILURE) $@ )
-
-Output/%.llx.out: %.llx Output/.dir $(LLC)
- -$(TESTRUNR) $<