llvm-project/llvm/test/CodeGen/CBackend/2005-02-14-VolatileOperatio...

9 lines
196 B
LLVM
Raw Normal View History

; RUN: llc < %s -march=c | grep volatile
2005-02-15 00:45:38 +08:00
define void @test(i32* %P) {
%X = volatile load i32* %P ; <i32> [#uses=1]
volatile store i32 %X, i32* %P
ret void
2005-02-15 00:45:38 +08:00
}