* testsuite/gcc.c-torture/compile/mipscop-[1-4].c: Disable for mips16.
authorRichard Sandiford <rsandifo@redhat.com>
Wed, 8 Oct 2003 07:20:22 +0000 (07:20 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Wed, 8 Oct 2003 07:20:22 +0000 (07:20 +0000)
From-SVN: r72218

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/mipscop-1.c
gcc/testsuite/gcc.c-torture/compile/mipscop-2.c
gcc/testsuite/gcc.c-torture/compile/mipscop-3.c
gcc/testsuite/gcc.c-torture/compile/mipscop-4.c

index 80b5f14823785b247191566f5b83fe9973569490..b30682c68d0cc08dc6c1475e1d1a47fd3270539c 100644 (file)
@@ -1,3 +1,7 @@
+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.
index 911aec2b40c9d3f32e6d194c9874456f23dfbab8..916a571db19a1e6763c8a7a3be4ee86d2e18645b 100644 (file)
@@ -1,5 +1,6 @@
 /* { dg-do compile { target mips*-*-* } } */
 
+#ifndef __mips16
 register unsigned int cp0count asm ("$c0r1");
 
 int
@@ -10,3 +11,4 @@ main (int argc, char *argv[])
   d = cp0count + 3;
   printf ("%d\n", d);
 }
+#endif
index 1f9118293252ab6f4516c62d0a845a8024c1382e..96b855ac829264f713566f9ff7f4610df9769534 100644 (file)
@@ -1,5 +1,6 @@
 /* { dg-do compile { target mips*-*-* } } */
 
+#ifndef __mips16
 register unsigned int c3r1 asm ("$c3r1");
 
 extern unsigned int b, c;
@@ -16,3 +17,4 @@ foo ()
   d = c3r1;
   printf ("%d\n", d);
 }
+#endif
index 014f33541dc3b44d4f446c28e79e46023ff2e325..dd894c49d775ca2443e37bab03b760579c504bc7 100644 (file)
@@ -1,5 +1,6 @@
 /* { dg-do compile { target mips*-*-* } } */
 
+#ifndef __mips16
 register unsigned int c3r1 asm ("$c3r1"), c3r2 asm ("$c3r2");
 
 extern unsigned int b, c;
@@ -16,3 +17,4 @@ foo ()
   d = c3r1;
   printf ("%d\n", d);
 }
+#endif
index da249daa6aed839e5f939588d2d58f1af8b701ff..dfaa59e00ab67c2a4ff55697d0824b3188fe60b4 100644 (file)
@@ -1,5 +1,6 @@
 /* { dg-do compile { target mips*-*-* } } */
 
+#ifndef __mips16
 register unsigned long c3r1 asm ("$c3r1"), c3r2 asm ("$c3r2");
 
 extern unsigned long b, c;
@@ -16,3 +17,4 @@ foo ()
   d = c3r1;
   printf ("%d\n", d);
 }
+#endif