llvm-6502/test/Transforms/ScalarRepl/volatile.ll

13 lines
331 B
LLVM
Raw Normal View History

; RUN: opt %s -scalarrepl -S | grep {volatile load}
; RUN: opt %s -scalarrepl -S | grep {volatile store}
define i32 @voltest(i32 %T) {
%A = alloca {i32, i32}
%B = getelementptr {i32,i32}* %A, i32 0, i32 0
volatile store i32 %T, i32* %B
%C = getelementptr {i32,i32}* %A, i32 0, i32 1
%X = volatile load i32* %C
ret i32 %X
}