Initial testcases for scalar replacement of aggregates pass
authorChris Lattner <sabre@nondot.org>
Tue, 27 May 2003 15:51:17 +0000 (15:51 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 27 May 2003 15:51:17 +0000 (15:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6347 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/ScalarRepl/Makefile [new file with mode: 0644]
test/Transforms/ScalarRepl/arraytest.ll [new file with mode: 0644]
test/Transforms/ScalarRepl/badarray.ll [new file with mode: 0644]
test/Transforms/ScalarRepl/basictest.ll [new file with mode: 0644]

diff --git a/test/Transforms/ScalarRepl/Makefile b/test/Transforms/ScalarRepl/Makefile
new file mode 100644 (file)
index 0000000..91acd4d
--- /dev/null
@@ -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) $<
diff --git a/test/Transforms/ScalarRepl/arraytest.ll b/test/Transforms/ScalarRepl/arraytest.ll
new file mode 100644 (file)
index 0000000..a647407
--- /dev/null
@@ -0,0 +1,13 @@
+; RUN: if as < %s | opt -scalarrepl -mem2reg | dis | grep alloca
+; RUN: then exit 1
+; RUN: else exit 0
+; RUN: fi
+
+int %test() {
+  %X = alloca [ 4 x int ]
+  %Y = getelementptr [4x int]* %X, long 0, long 0
+  store int 0, int* %Y
+
+  %Z = load int* %Y
+  ret int %Z
+}
diff --git a/test/Transforms/ScalarRepl/badarray.ll b/test/Transforms/ScalarRepl/badarray.ll
new file mode 100644 (file)
index 0000000..22e84f8
--- /dev/null
@@ -0,0 +1,10 @@
+; RUN: as < %s | opt -scalarrepl -mem2reg | dis | grep alloca
+
+int %test() {
+  %X = alloca [ 4 x int ]
+  %Y = getelementptr [4x int]* %X, long 0, long 6 ; Off end of array!
+  store int 0, int* %Y
+
+  %Z = load int* %Y
+  ret int %Z
+}
diff --git a/test/Transforms/ScalarRepl/basictest.ll b/test/Transforms/ScalarRepl/basictest.ll
new file mode 100644 (file)
index 0000000..0582a34
--- /dev/null
@@ -0,0 +1,13 @@
+; RUN: if as < %s | opt -scalarrepl -mem2reg | dis | grep alloca
+; RUN: then exit 1
+; RUN: else exit 0
+; RUN: fi
+
+int %test() {
+  %X = alloca { int, float }
+  %Y = getelementptr {int,float}* %X, long 0, ubyte 0
+  store int 0, int* %Y
+
+  %Z = load int* %Y
+  ret int %Z
+}