diff options
author | Toma Tabacu <toma.tabacu@imgtec.com> | 2016-11-17 22:54:15 +0000 |
---|---|---|
committer | Catherine Moore <clm@gcc.gnu.org> | 2016-11-17 17:54:15 -0500 |
commit | e080b2818b12b856ed8bc6dd26edb89703a2ff0d (patch) | |
tree | 23514b73ca2db93683a30445363a6b15d3a946d0 | |
parent | c2f2350e9b99f92cdda476830c1059152077999d (diff) | |
download | gcc-e080b2818b12b856ed8bc6dd26edb89703a2ff0d.zip gcc-e080b2818b12b856ed8bc6dd26edb89703a2ff0d.tar.gz gcc-e080b2818b12b856ed8bc6dd26edb89703a2ff0d.tar.bz2 |
branch-cost-1.c (dg-options): Use (HAS_MOVN) instead of isa>=4, in order to downgrade to R5.
2016-11-17 Toma Tabacu <toma.tabacu@imgtec.com>
* gcc.target/mips/branch-cost-1.c (dg-options): Use (HAS_MOVN)
instead of isa>=4, in order to downgrade to R5.
From-SVN: r242574
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/mips/branch-cost-1.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 1daa0aa..356d75a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-11-17 Toma Tabacu <toma.tabacu@imgtec.com> + + * gcc.target/mips/branch-cost-1.c (dg-options): Use (HAS_MOVN) + instead of isa>=4, in order to downgrade to R5. + 2016-11-17 Andrew Burgess <andrew.burgess@embecosm.com> * gcc.target/arc/cmem-bit-1.c: New file. diff --git a/gcc/testsuite/gcc.target/mips/branch-cost-1.c b/gcc/testsuite/gcc.target/mips/branch-cost-1.c index 61c3029..7f7ebbe 100644 --- a/gcc/testsuite/gcc.target/mips/branch-cost-1.c +++ b/gcc/testsuite/gcc.target/mips/branch-cost-1.c @@ -1,4 +1,4 @@ -/* { dg-options "-mbranch-cost=1 isa>=4" } */ +/* { dg-options "-mbranch-cost=1 (HAS_MOVN)" } */ /* { dg-skip-if "code quality test" { *-*-* } { "-O0" } { "" } } */ NOMIPS16 int foo (int x, int y, int z, int k) |