aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/mipscop-1.c
blob: 13be5142d944057d87356f2c0e9313b99e277461 (plain)
1
2
3
4
5
6
7
8
9
10
register unsigned int cp0count asm ("$c0r1");

int
main (int argc, char *argv[])
{
  unsigned int d;

  d = cp0count + 3;
  printf ("%d\n", d);
}