mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
142428ce64
llvm-svn: 81293
11 lines
286 B
LLVM
11 lines
286 B
LLVM
; RUN: llc < %s -march=c | grep {\\* *volatile *\\*}
|
|
|
|
@G = external global void ()* ; <void ()**> [#uses=2]
|
|
|
|
define void @test() {
|
|
volatile store void ()* @test, void ()** @G
|
|
volatile load void ()** @G ; <void ()*>:1 [#uses=0]
|
|
ret void
|
|
}
|
|
|