diff options
author | Thomas Koenig <tkoenig@gcc.gnu.org> | 2019-01-03 12:32:34 +0000 |
---|---|---|
committer | Thomas Koenig <tkoenig@gcc.gnu.org> | 2019-01-03 12:32:34 +0000 |
commit | ed72c2e3b39a30ece53f0896c594160c6aa53330 (patch) | |
tree | 7e85ffb99d593a9a2f4347db5380e26f3e10000f /gcc | |
parent | 4a62f44193ab95288311d162c45dbd31a7930281 (diff) | |
download | gcc-ed72c2e3b39a30ece53f0896c594160c6aa53330.zip gcc-ed72c2e3b39a30ece53f0896c594160c6aa53330.tar.gz gcc-ed72c2e3b39a30ece53f0896c594160c6aa53330.tar.bz2 |
re PR fortran/48543 (Collapse identical strings)
2019-01-02 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/48543
* gfortran.dg/const_chararacter_merge.f90: Remove.
From-SVN: r267553
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gfortran.dg/merge_char_const.f90 | 13 |
2 files changed, 5 insertions, 13 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 768c109..ba9ed48 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2019-01-02 Thomas Koenig <tkoenig@gcc.gnu.org> + + PR fortran/48543 + * gfortran.dg/const_chararacter_merge.f90: Remove. + 2019-01-03 Jakub Jelinek <jakub@redhat.com> PR debug/88644 diff --git a/gcc/testsuite/gfortran.dg/merge_char_const.f90 b/gcc/testsuite/gfortran.dg/merge_char_const.f90 deleted file mode 100644 index 32c87f5..0000000 --- a/gcc/testsuite/gfortran.dg/merge_char_const.f90 +++ /dev/null @@ -1,13 +0,0 @@ -! { dg-do run } -! { dg-options "-O0" } -! This tests the patch for PR24311 in which the PRINT statement would -! ICE on trying to print a MERGE statement with character constants -! for the first two arguments. -! -! Contributed by Paul Thomas <pault@gcc.gnu.org> -! - integer, dimension(6) :: i = (/1,0,0,1,1,0/) - print '(6a1)', Merge ("a", "b", i == 1) ! { dg-output "abbaab" } - end - - |