diff options
author | Toma Tabacu <toma.tabacu@imgtec.com> | 2016-11-09 20:34:21 +0000 |
---|---|---|
committer | Catherine Moore <clm@gcc.gnu.org> | 2016-11-09 15:34:21 -0500 |
commit | 410fe60d14642e03ba5b1658bff522d92fa4ca9f (patch) | |
tree | 5e4e73ad267367017ec8534f59b98e72a8edb9b6 | |
parent | 271dd55c784a8bae4edae33f9fd79f046be7cd6c (diff) | |
download | gcc-410fe60d14642e03ba5b1658bff522d92fa4ca9f.zip gcc-410fe60d14642e03ba5b1658bff522d92fa4ca9f.tar.gz gcc-410fe60d14642e03ba5b1658bff522d92fa4ca9f.tar.bz2 |
mips.exp (mips-dg-options): Upgrade to MIPS IV if using (HAS_MOVN) with MIPS III.
2016-11-09 Toma Tabacu <toma.tabacu@imgtec.com>
* gcc.target/mips/mips.exp (mips-dg-options): Upgrade to MIPS IV if
using (HAS_MOVN) with MIPS III.
From-SVN: r242021
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/mips/mips.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f295754..0418e76 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2016-11-09 Toma Tabacu <toma.tabacu@imgtec.com> + + * gcc.target/mips/mips.exp (mips-dg-options): Upgrade to MIPS IV if + using (HAS_MOVN) with MIPS III. + 2016-11-09 Janus Weil <janus@gcc.gnu.org> PR fortran/46459 diff --git a/gcc/testsuite/gcc.target/mips/mips.exp b/gcc/testsuite/gcc.target/mips/mips.exp index 39f44ff..e22d782 100644 --- a/gcc/testsuite/gcc.target/mips/mips.exp +++ b/gcc/testsuite/gcc.target/mips/mips.exp @@ -1129,7 +1129,7 @@ proc mips-dg-options { args } { # We need MIPS IV or higher for: # # - } elseif { $isa < 3 + } elseif { $isa < 4 && [mips_have_test_option_p options "HAS_MOVN"] } { mips_make_test_option options "-mips4" # We need MIPS III or higher for: |