(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
arc/
uncached-1.c
       1  /* { dg-do compile } */
       2  
       3  volatile __attribute__((uncached))  int * status =
       4    (volatile __attribute__((uncached)) int *) 0x04 ;
       5  
       6  int get_stat (void)
       7  {
       8    return *status;
       9  }
      10  
      11  /* { dg-final { scan-assembler-times "ld\.di" 2 } } */