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