aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/mipscop-2.c
blob: 0ba5610b623033e62a64bfb1f97b48c273f665d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do assemble {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);
}