https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84539
Dominique d'Humieres changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84539
--- Comment #4 from Neil Carlson ---
Update with 8.2.0
The ICE is gone, but a run time segfault remains:
Program received signal SIGSEGV: Segmentation fault - invalid memory reference.
Backtrace for this error:
#0 0x7f82986c06df in ???
#1 0x
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84539
--- Comment #3 from Dominique d'Humieres ---
> Confirmed, present since at least r245582.
Forgot to say that the ICE requires a compiler configured with
--enable-checking=yes.
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84539
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84539
--- Comment #1 from Neil Carlson ---
And same example but using character data. This compiles but gives a segfault
when run at the assignment statement.
class(*), allocatable :: x(:)
x = ['foo','bar']
select type (x)
type is (character(*))
if