Merge branch 'master' into msp430
[llvm/msp430.git] / test / Transforms / ScalarRepl / volatile.ll
blob5f9fe0d89a5a318e1533397633f7da1b96c32060
1 ; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | grep {volatile load}
2 ; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | grep {volatile store}
4 define i32 @voltest(i32 %T) {
5         %A = alloca {i32, i32}
6         %B = getelementptr {i32,i32}* %A, i32 0, i32 0
7         volatile store i32 %T, i32* %B
9         %C = getelementptr {i32,i32}* %A, i32 0, i32 1
10         %X = volatile load i32* %C
11         ret i32 %X