aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/mipscop-2.c
blob: 94df41d65f9a24b4ad7d2c1dfc5b32c9f76a0ff7 (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 __attribute__ ((nomips16))
foo ()
{
  unsigned int a, d;

  c3r1 = a;
  b = c3r1;

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