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
This commit is contained in:
Chris Lattner
2003-05-27 15:51:17 +00:00
parent ed7b41ea90
commit 016d7b9ed8
4 changed files with 46 additions and 0 deletions
+13
View File
@@ -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
}