[Bug fortran/82996] ICE and segfault with derived type finalization

2017-11-16 Thread ondrej.certik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82996 Ondřej Čertík changed: What|Removed |Added CC||ondrej.certik at gmail dot com

[Bug fortran/64244] [4.8/4.9/5 Regression] ICE at class.c:236 when using non_overridable

2014-12-16 Thread ondrej.certik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64244 --- Comment #14 from Ondřej Čertík --- On Tue, Dec 16, 2014 at 4:24 PM, Ondřej Čertík wrote: > On Tue, Dec 16, 2014 at 1:46 PM, janus at gcc dot gnu.org > wrote: >> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64244 >> >> --- Comment #12 from j

[Bug fortran/64244] [4.8/4.9/5 Regression] ICE at class.c:236 when using non_overridable

2014-12-16 Thread ondrej.certik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64244 --- Comment #13 from Ondřej Čertík --- On Tue, Dec 16, 2014 at 1:46 PM, janus at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64244 > > --- Comment #12 from janus at gcc dot gnu.org --- > (In reply to Ondřej Čertík from

[Bug fortran/64244] [4.8/4.9/5 Regression] ICE at class.c:236 when using non_overridable

2014-12-16 Thread ondrej.certik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64244 --- Comment #11 from Ondřej Čertík --- On Tue, Dec 16, 2014 at 9:47 AM, janus at gcc dot gnu.org wrote: > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64244 > > --- Comment #10 from janus at gcc dot gnu.org --- > (In reply to Ondřej Čertík from

[Bug fortran/64244] [4.8/4.9/5 Regression] ICE at class.c:236 when using non_overridable

2014-12-16 Thread ondrej.certik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64244 --- Comment #9 from Ondřej Čertík --- Janus, thanks a lot for fixing this! Yes, it's part of a large code base. I'll try the trunk soon.

[Bug fortran/60289] allocating class(*) pointer as character gives type-spec requires the same character-length parameter

2014-12-09 Thread ondrej.certik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60289 Ondřej Čertík changed: What|Removed |Added CC||ondrej.certik at gmail dot com

[Bug fortran/64244] New: internal compiler error at class.c:236 when using non_overridable

2014-12-09 Thread ondrej.certik at gmail dot com
Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: ondrej.certik at gmail dot com Created attachment 34235 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=34235&action=edit Test program to trigger ICE This test fil

[Bug fortran/64229] New: internal compiler error when assigning allocatable arrays of character(:)

2014-12-08 Thread ondrej.certik at gmail dot com
: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: ondrej.certik at gmail dot com Created attachment 34223 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=34223&action=edit Test program to trigger ICE The followi

[Bug fortran/62142] internal compiler error: Segmentation fault (X = X - L*floor(X/L))

2014-08-14 Thread ondrej.certik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62142 --- Comment #3 from Ondřej Čertík --- Thanks Steve for the quick reply! I tried "-fno-realloc-lhs" and it fixes the problem for us (we always allocate arrays explicitly).

[Bug fortran/62142] internal compiler error: Segmentation fault (X = X - L*floor(X/L))

2014-08-14 Thread ondrej.certik at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62142 --- Comment #1 from Ondřej Čertík --- One can actually isolate it even further (the same stacktrace): program test_segfault implicit none real, allocatable :: X(:) X = floor(X) end program

[Bug fortran/62142] New: internal compiler error: Segmentation fault (X = X - L*floor(X/L))

2014-08-14 Thread ondrej.certik at gmail dot com
Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: ondrej.certik at gmail dot com Created attachment 33327 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=33327&action=edit Source file to reproduce the segfault