summaryrefslogtreecommitdiff
path: root/test/Transforms/ScalarRepl/arraytest.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-27 15:51:17 +0000
committerChris Lattner <sabre@nondot.org>2003-05-27 15:51:17 +0000
commit016d7b9ed8099c9f195464bbf0b35c6f2b1e92fe (patch)
treed641e0278b0a87571c1fac3836674ce083acc204 /test/Transforms/ScalarRepl/arraytest.ll
parented7b41ea90a17c826f195acbc456c4bb733113d6 (diff)
downloadllvm-016d7b9ed8099c9f195464bbf0b35c6f2b1e92fe.tar.gz
llvm-016d7b9ed8099c9f195464bbf0b35c6f2b1e92fe.tar.bz2
llvm-016d7b9ed8099c9f195464bbf0b35c6f2b1e92fe.tar.xz
Initial testcases for scalar replacement of aggregates pass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6347 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/ScalarRepl/arraytest.ll')
-rw-r--r--test/Transforms/ScalarRepl/arraytest.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Transforms/ScalarRepl/arraytest.ll b/test/Transforms/ScalarRepl/arraytest.ll
new file mode 100644
index 0000000000..a6474070e3
--- /dev/null
+++ b/test/Transforms/ScalarRepl/arraytest.ll
@@ -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
+}