C tests are run via Makefile.singlesrc so don't run them twice.
authorVikram S. Adve <vadve@cs.uiuc.edu>
Mon, 23 Sep 2002 14:23:15 +0000 (14:23 +0000)
committerVikram S. Adve <vadve@cs.uiuc.edu>
Mon, 23 Sep 2002 14:23:15 +0000 (14:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3885 91177308-0d34-0410-b5e6-96231b3b80d8

test/LLC/Makefile

index 0aecc83090161f48b77d689dbc1d8dd8d81a466e..b48c24ad60fcf1d881b409f428e94238db119e3f 100644 (file)
@@ -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)))