1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 22:42:52 +01:00
llvm-mirror/test/Regression/Transforms/ScalarRepl/2003-05-30-MultiLevel.ll
Chris Lattner 43ab06fba5 New testcase
llvm-svn: 6427
2003-05-30 05:26:08 +00:00

10 lines
200 B
LLVM

; RUN: as < %s | opt -scalarrepl
int %test() {
%X = alloca { [ 4 x int] }
%Y = getelementptr { [ 4 x int] }* %X, long 0, ubyte 0, long 2
store int 4, int* %Y
%Z = load int* %Y
ret int %Z
}