diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2021-02-25 17:20:16 +0100 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2021-02-25 17:32:37 +0100 |
commit | 232f7461167d58f77f52f881f36145faf27b25d6 (patch) | |
tree | dae276cad6a545f5f5e63c663bc8af451984e897 /gcc | |
parent | 28af4b9a7c5ee9f6c6fc111210639eb2f64bddcd (diff) | |
download | gcc-232f7461167d58f77f52f881f36145faf27b25d6.zip gcc-232f7461167d58f77f52f881f36145faf27b25d6.tar.gz gcc-232f7461167d58f77f52f881f36145faf27b25d6.tar.bz2 |
pr95690.f90: move error line for CRIS.
I don't know what it is that ix86, x86_64, Solaris and
apparently CRIS has in common here.
According to
https://gcc.gnu.org/pipermail/gcc-testresults/2021-February/652763.html
m68k-unknown-linux-gnu is also in that bunch, but since
there's a *-*-solaris* in the target specifier and also m68k
vs. m68k*, I'm leaving the adjustment to a maintainer.
gcc/testsuite:
* gfortran.dg/pr95690.f90: CRIS error appears on line 5.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gfortran.dg/pr95690.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gfortran.dg/pr95690.f90 b/gcc/testsuite/gfortran.dg/pr95690.f90 index da809a0..7d8c68d 100644 --- a/gcc/testsuite/gfortran.dg/pr95690.f90 +++ b/gcc/testsuite/gfortran.dg/pr95690.f90 @@ -2,8 +2,8 @@ module m contains subroutine s - print *, (erfc) ! { dg-error "not a floating constant" "" { target i?86-*-* x86_64-*-* *-*-solaris* } } - end ! { dg-error "not a floating constant" "" { target { ! "i?86-*-* x86_64-*-* *-*-solaris*" } } } + print *, (erfc) ! { dg-error "not a floating constant" "" { target i?86-*-* x86_64-*-* *-*-solaris* cris-*-* } } + end ! { dg-error "not a floating constant" "" { target { ! "i?86-*-* x86_64-*-* *-*-solaris* cris-*-*" } } } function erfc() end end |