summaryrefslogtreecommitdiffstats
path: root/test/Transforms/ScalarRepl/volatile.ll
blob: 5f9fe0d89a5a318e1533397633f7da1b96c32060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | grep {volatile load}
; RUN: llvm-as < %s | opt -scalarrepl | llvm-dis | 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
}
OpenPOWER on IntegriCloud