diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2003-10-08 07:20:22 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2003-10-08 07:20:22 +0000 |
commit | 1703590eadc1b2903785d9884f8f8680e8ca31af (patch) | |
tree | 95bc66cc174edec754eb7b339ab26967795c19e9 /gcc | |
parent | 3d56512d6f43b615b01d19eff3489564fbe2992b (diff) | |
download | gcc-1703590eadc1b2903785d9884f8f8680e8ca31af.zip gcc-1703590eadc1b2903785d9884f8f8680e8ca31af.tar.gz gcc-1703590eadc1b2903785d9884f8f8680e8ca31af.tar.bz2 |
* testsuite/gcc.c-torture/compile/mipscop-[1-4].c: Disable for mips16.
From-SVN: r72218
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/mipscop-1.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/mipscop-2.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/mipscop-3.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/mipscop-4.c | 2 |
5 files changed, 12 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 80b5f14..b30682c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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. diff --git a/gcc/testsuite/gcc.c-torture/compile/mipscop-1.c b/gcc/testsuite/gcc.c-torture/compile/mipscop-1.c index 911aec2..916a571 100644 --- a/gcc/testsuite/gcc.c-torture/compile/mipscop-1.c +++ b/gcc/testsuite/gcc.c-torture/compile/mipscop-1.c @@ -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 diff --git a/gcc/testsuite/gcc.c-torture/compile/mipscop-2.c b/gcc/testsuite/gcc.c-torture/compile/mipscop-2.c index 1f91182..96b855a 100644 --- a/gcc/testsuite/gcc.c-torture/compile/mipscop-2.c +++ b/gcc/testsuite/gcc.c-torture/compile/mipscop-2.c @@ -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 diff --git a/gcc/testsuite/gcc.c-torture/compile/mipscop-3.c b/gcc/testsuite/gcc.c-torture/compile/mipscop-3.c index 014f335..dd894c4 100644 --- a/gcc/testsuite/gcc.c-torture/compile/mipscop-3.c +++ b/gcc/testsuite/gcc.c-torture/compile/mipscop-3.c @@ -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 diff --git a/gcc/testsuite/gcc.c-torture/compile/mipscop-4.c b/gcc/testsuite/gcc.c-torture/compile/mipscop-4.c index da249da..dfaa59e 100644 --- a/gcc/testsuite/gcc.c-torture/compile/mipscop-4.c +++ b/gcc/testsuite/gcc.c-torture/compile/mipscop-4.c @@ -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 |