Arrange to print constants that match "n" and "i" constraints
[oota-llvm.git] / test / CodeGen / CBackend / 2005-09-27-VolatileFuncPtr.ll
1 ; RUN: llvm-as < %s | llc -march=c | grep {\\* *volatile *\\*}
2
3 @G = external global void ()*           ; <void ()**> [#uses=2]
4
5 define void @test() {
6         volatile store void ()* @test, void ()** @G
7         volatile load void ()** @G              ; <void ()*>:1 [#uses=0]
8         ret void
9 }
10