https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67938
Thomas Koenig changed:
What|Removed |Added
CC||tkoenig at gcc dot gnu.org
Resol
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67938
--- Comment #4 from CVS Commits ---
The master branch has been updated by Thomas Kथà¤nig :
https://gcc.gnu.org/g:8d57c30611b05a89fd265f6c0a74fe829c21cd34
commit r11-879-g8d57c30611b05a89fd265f6c0a74fe829c21cd34
Author: José Rui Faustino de So
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67938
Dominique d'Humieres changed:
What|Removed |Added
Keywords||ice-on-valid-code
Sta
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67938
--- Comment #2 from Gerhard Steinmetz
---
As meanwhile noticed, example z1.f90 from comment #1 overlaps with PR66833.
Examples z2.f90 (comment #0) and z1s.f90 are describing additional effects.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67938
--- Comment #1 from Gerhard Steinmetz
---
$ cat z1.f90
program p
implicit none
character(1) :: z(3)
call s(z)
contains
subroutine s(x)
character(1) :: x(..)
print *, lbound(x)
print *, ubound(x)
end subroutine
en