summaryrefslogtreecommitdiffstats
path: root/test/Transforms/ScalarRepl/volatile.ll
blob: fadf1aa276c85a69806a74679f31a7fbad5d3d88 (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
	store volatile i32 %T, i32* %B

	%C = getelementptr {i32,i32}* %A, i32 0, i32 1
	%X = load volatile i32* %C
	ret i32 %X
}