diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-10 22:21:25 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-10 22:21:25 +0000 |
commit | 511cbbeba2e9d68db4669a7a8fce8cc54f73d967 (patch) | |
tree | d6d79b8fdd2f73cc6e441f92edd35a61f21db78f | |
parent | dd63a37c8713902469d5f080380b0cb30373e67d (diff) |
run LICM tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2608 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/LICM/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Transforms/LICM/Makefile b/test/Transforms/LICM/Makefile new file mode 100644 index 0000000000..91acd4d481 --- /dev/null +++ b/test/Transforms/LICM/Makefile @@ -0,0 +1,10 @@ + +LEVEL = ../../../.. +include $(LEVEL)/test/Makefile.tests + +TESTS := $(wildcard *.ll) + +all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out)) + +Output/%.ll.out: %.ll Output/.dir $(LOPT) + -$(TESTRUNR) $< |