aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/LLC/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/LLC/Makefile b/test/LLC/Makefile
index 0aecc83090..b48c24ad60 100644
--- a/test/LLC/Makefile
+++ b/test/LLC/Makefile
@@ -5,7 +5,9 @@
LEVEL = ../../..
include $(LEVEL)/test/Programs/SingleSource/Makefile.singlesrc
-TESTS := $(wildcard *.ll) $(wildcard *.c)
+# Only .ll tests here. C tests are run via Makefile.singlesrc above.
+#
+TESTS := $(wildcard *.ll)
all:: $(addprefix Output/, $(filter-out %.c, $(TESTS:%.ll=%.ts)))