(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
mipscop-1.c
       1  /* { dg-do compile { target mips*-*-* } } */
       2  
       3  register unsigned int cp0count asm ("$c0r1");
       4  
       5  int __attribute__ ((nomips16))
       6  main (int argc, char *argv[])
       7  {
       8    unsigned int d;
       9  
      10    d = cp0count + 3;
      11    printf ("%d\n", d);
      12  }