blob: 32a7088984f04e4297c67a3ec0c987d8f270a7b4 [file] [log] [blame]
; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | grep {\\* *volatile *\\*}
%G = external global void()*
void %test() {
volatile store void()* %test, void()** %G
volatile load void()** %G
ret void
}