summaryrefslogtreecommitdiff
path: root/test/Transforms/ScalarRepl/volatile.ll
blob: 056526cbd92b40ae32ddd29b8ae621f9516cf35c (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
}