diff options
author | Adam Nemet <anemet@caviumnetworks.com> | 2009-01-27 07:41:46 +0000 |
---|---|---|
committer | Adam Nemet <nemet@gcc.gnu.org> | 2009-01-27 07:41:46 +0000 |
commit | 8cff583a258b08c0dc0d0f101a5b11c8b58115ca (patch) | |
tree | 34f3b7b5de7d1f0b483182aef92b27e46dec1957 | |
parent | 661fe60f8a2a6b54f08178c2c483031b150d0783 (diff) | |
download | gcc-8cff583a258b08c0dc0d0f101a5b11c8b58115ca.zip gcc-8cff583a258b08c0dc0d0f101a5b11c8b58115ca.tar.gz gcc-8cff583a258b08c0dc0d0f101a5b11c8b58115ca.tar.bz2 |
re PR testsuite/38864 (Fixed-point tests under gcc.target/mips are missing the fixed_point target check)
PR testsuite/38864
* gcc.target/mips/fixed-vector-type.c: Add { target { fixed_point} }
to dg-do compile.
* gcc.target/mips/fixed-scalar-type.c: Likewise.
* gcc.target/mips/dpaq_sa_l_w.c: Likewise.
* gcc.target/mips/dpsq_sa_l_w.c: Likewise.
From-SVN: r143694
-rw-r--r-- | gcc/testsuite/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/mips/dpaq_sa_l_w.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/mips/dpsq_sa_l_w.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/mips/fixed-scalar-type.c | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/mips/fixed-vector-type.c | 2 |
5 files changed, 13 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 89c32e5..7718c91 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,12 @@ +2009-01-26 Adam Nemet <anemet@caviumnetworks.com> + + PR testsuite/38864 + * gcc.target/mips/fixed-vector-type.c: Add target { fixed_point} + to dg-do compile. + * gcc.target/mips/fixed-scalar-type.c: Likewise. + * gcc.target/mips/dpaq_sa_l_w.c: Likewise. + * gcc.target/mips/dpsq_sa_l_w.c: Likewise. + 2009-01-26 H.J. Lu <hongjiu.lu@intel.com> PR target/38952 diff --git a/gcc/testsuite/gcc.target/mips/dpaq_sa_l_w.c b/gcc/testsuite/gcc.target/mips/dpaq_sa_l_w.c index d1812c1..87d1da9 100644 --- a/gcc/testsuite/gcc.target/mips/dpaq_sa_l_w.c +++ b/gcc/testsuite/gcc.target/mips/dpaq_sa_l_w.c @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target { fixed_point } } } */ /* { dg-options "-O2 -mgp32 -mdsp" } */ /* { dg-final { scan-assembler-times "\tdpaq_sa.l.w\t\\\$ac" 3 } } */ diff --git a/gcc/testsuite/gcc.target/mips/dpsq_sa_l_w.c b/gcc/testsuite/gcc.target/mips/dpsq_sa_l_w.c index 849bd92..9aeb566 100644 --- a/gcc/testsuite/gcc.target/mips/dpsq_sa_l_w.c +++ b/gcc/testsuite/gcc.target/mips/dpsq_sa_l_w.c @@ -1,4 +1,4 @@ -/* { dg-do compile } */ +/* { dg-do compile { target { fixed_point } } } */ /* { dg-options "-O2 -mgp32 -mdsp" } */ /* { dg-final { scan-assembler-times "\tdpsq_sa.l.w\t\\\$ac" 2 } } */ diff --git a/gcc/testsuite/gcc.target/mips/fixed-scalar-type.c b/gcc/testsuite/gcc.target/mips/fixed-scalar-type.c index a2e2fbf..b4734f4 100644 --- a/gcc/testsuite/gcc.target/mips/fixed-scalar-type.c +++ b/gcc/testsuite/gcc.target/mips/fixed-scalar-type.c @@ -1,5 +1,5 @@ /* Test scalar fixed-point instructions */ -/* { dg-do compile } */ +/* { dg-do compile { target { fixed_point } } } */ /* { dg-options "-mdspr2 -O2" } */ /* { dg-final { scan-assembler-times "\taddu\t" 10 } } */ /* { dg-final { scan-assembler-times "\tsubu\t" 10 } } */ diff --git a/gcc/testsuite/gcc.target/mips/fixed-vector-type.c b/gcc/testsuite/gcc.target/mips/fixed-vector-type.c index 2fb16aa..9b67704 100644 --- a/gcc/testsuite/gcc.target/mips/fixed-vector-type.c +++ b/gcc/testsuite/gcc.target/mips/fixed-vector-type.c @@ -1,5 +1,5 @@ /* Test vector fixed-point instructions */ -/* { dg-do compile } */ +/* { dg-do compile { target { fixed_point } } } */ /* { dg-options "-mdspr2 -O2" } */ /* { dg-final { scan-assembler-times "\taddq_s.ph\t" 2 } } */ /* { dg-final { scan-assembler-times "\tsubq_s.ph\t" 2 } } */ |