1 /* { dg-do compile } */
2 
3 int a;
b()4 void b() {
5   float c;
6   for (int d; d;)
7     ;
8   a = c;
9   asm("" : : "pir"(c));
10 }
11