blob: ff7ef94d697091a9bd05707d79f77dc1385169d3 [file] [log] [blame]
; RUN: llc < %s -march=c | grep volatile
define void @test(i32* %P) {
%X = volatile load i32* %P ; <i32> [#uses=1]
volatile store i32 %X, i32* %P
ret void
}