summaryrefslogtreecommitdiff
path: root/test/Transforms/ScalarRepl/volatile.ll
blob: ab276b043e3aed8fac2bd6f3cea27d897a55aa10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: opt < %s -scalarrepl -S | grep {load volatile}
; RUN: opt < %s -scalarrepl -S | grep {store volatile}

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
}