diff options
author | Chris Lattner <sabre@nondot.org> | 2003-03-31 19:57:36 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-03-31 19:57:36 +0000 |
commit | 7cd2fff2fd90593bd4c25dd4d39c54dd49523d4b (patch) | |
tree | b3c78d387cda28cb79988b0d3cbc376e39f284fc | |
parent | e941291a7a5b0b6495dc10da7257ea118ac62cce (diff) |
Initial checkin of PRE tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5760 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/PRE/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/Transforms/PRE/Makefile b/test/Transforms/PRE/Makefile new file mode 100644 index 0000000000..91acd4d481 --- /dev/null +++ b/test/Transforms/PRE/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) $< |