blob: 32a7088984f04e4297c67a3ec0c987d8f270a7b4 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | grep {\\* *volatile *\\*}
2
3%G = external global void()*
4
5void %test() {
6 volatile store void()* %test, void()** %G
7 volatile load void()** %G
8 ret void
9}