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

#ifndef __mips16
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);
}
#endif