+2003-10-08 Richard Sandiford <rsandifo@redhat.com>
+
+ * testsuite/gcc.c-torture/compile/mipscop-[1-4].c: Disable for mips16.
+
2003-10-08 Giovanni Bajo <giovannibajo@libero.it>
* g++.dg/parse/error2.C: New test.
/* { dg-do compile { target mips*-*-* } } */
+#ifndef __mips16
register unsigned int cp0count asm ("$c0r1");
int
d = cp0count + 3;
printf ("%d\n", d);
}
+#endif
/* { dg-do compile { target mips*-*-* } } */
+#ifndef __mips16
register unsigned int c3r1 asm ("$c3r1");
extern unsigned int b, c;
d = c3r1;
printf ("%d\n", d);
}
+#endif
/* { dg-do compile { target mips*-*-* } } */
+#ifndef __mips16
register unsigned int c3r1 asm ("$c3r1"), c3r2 asm ("$c3r2");
extern unsigned int b, c;
d = c3r1;
printf ("%d\n", d);
}
+#endif
/* { dg-do compile { target mips*-*-* } } */
+#ifndef __mips16
register unsigned long c3r1 asm ("$c3r1"), c3r2 asm ("$c3r2");
extern unsigned long b, c;
d = c3r1;
printf ("%d\n", d);
}
+#endif