aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/mipscop-2.c
blob: 1f9118293252ab6f4516c62d0a845a8024c1382e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile { target mips*-*-* } } */

register unsigned int c3r1 asm ("$c3r1");

extern unsigned int b, c;

void
foo ()
{
  unsigned int a, d;

  c3r1 = a;
  b = c3r1;

  c3r1 = c;
  d = c3r1;
  printf ("%d\n", d);
}