[Bug fortran/90667] pipe eof

2019-05-29 Thread simon.kluepfel at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90667 Simon Klüpfel changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|---

[Bug fortran/90667] New: pipe eof

2019-05-29 Thread simon.kluepfel at gmail dot com
: unassigned at gcc dot gnu.org Reporter: simon.kluepfel at gmail dot com Target Milestone: ---

[Bug fortran/86262] allocation with non-parameter array expression as SOURCE sets LBOUND to 0

2018-06-21 Thread simon.kluepfel at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86262 --- Comment #1 from Simon Klüpfel --- Though I did search, right after I submitted the bug I saw it is already filed, e.g. as Bug 85534. Sorry for that, I guess my report does not add much.

[Bug fortran/86262] New: allocation with non-parameter array expression as SOURCE sets LBOUND to 0

2018-06-21 Thread simon.kluepfel at gmail dot com
: normal Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: simon.kluepfel at gmail dot com Target Milestone: --- Created attachment 44307 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=44307&action=edit source cod

[Bug fortran/86167] New: allocation variable length character array in derived type incorrect

2018-06-15 Thread simon.kluepfel at gmail dot com
Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: simon.kluepfel at gmail dot com Target Milestone: --- Created attachment 44285 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=44285&action=edit main.f03 Allocati

[Bug fortran/86120] New: SIGSEGV without backtrace when using submodules

2018-06-12 Thread simon.kluepfel at gmail dot com
: fortran Assignee: unassigned at gcc dot gnu.org Reporter: simon.kluepfel at gmail dot com Target Milestone: --- Created attachment 44264 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=44264&action=edit source code The attached code does not run as expect

[Bug fortran/82859] New: derived type character component, array comparison inconsistent

2017-11-06 Thread simon.kluepfel at gmail dot com
Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: simon.kluepfel at gmail dot com Target Milestone: --- Created attachment 42547 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=42547&action=edit source code of test

[Bug fortran/82743] uncaught character truncation in derived type initialization

2017-10-27 Thread simon.kluepfel at gmail dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82743 --- Comment #1 from Simon Klüpfel --- One more thing I tested. When the default initialization is too long, it is caught as expected. PROGRAM TEST TYPE A CHARACTER(LEN=1) :: C="123" END TYPE A END PROGRAM TEST gives main.f95:3

[Bug fortran/82743] New: uncaught character truncation in derived type initialization

2017-10-27 Thread simon.kluepfel at gmail dot com
Priority: P3 Component: fortran Assignee: unassigned at gcc dot gnu.org Reporter: simon.kluepfel at gmail dot com Target Milestone: --- Initializing a derived type with a character component with a string too long is not caught by -Wcharacter-truncation. PROGRAM TEST