modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/compile/mipscop-1.c (about)

     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  }