mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
142428ce64
llvm-svn: 81293
9 lines
196 B
LLVM
9 lines
196 B
LLVM
; 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
|
|
}
|
|
|