aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/mipscop-3.c
blob: cb4bd4d3efb3eb22d26f51414dba5ca27c26dcda (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"), c3r2 asm ("$c3r2");

extern unsigned int b, c;

void __attribute__ ((nomips16))
foo ()
{
  unsigned int a, d;

  c3r1 = a;
  b = c3r1;

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