[Bug 1720699] Re: gfortran segfault on continuation at end of program followed by two or more newlines

2017-10-01 Thread Andrew Gaspar
Also repros in 17.10 (Hyper-V VM). Additional warning in compilation now. gfortran test.f90 -o hello ``` f951: Warning: No location in statement f951: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See for instructions. ```

[Bug 1720699] Re: gfortran segfault on continuation at end of program followed by two or more newlines

2017-10-01 Thread Andrew Gaspar
Repros in 17.04 (Hyper-V VM). Looking into 17.10. gfortran test.f90 -o hello ``` f951: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See for instructions. ``` gfortran --version ``` GNU Fortran (Ubuntu 6.3.0-12ubuntu2)

[Bug 1720699] Re: gfortran segfault on continuation at end of program followed by two or more newlines

2017-10-01 Thread Andrew Gaspar
I assumed you meant 17.04, anyway. The original bug was filed against 16.04. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/1720699 Title: gfortran segfault on continuation at end of program

[Bug 1720699] [NEW] gfortran segfault on continuation at end of program followed by two or more newlines

2017-10-01 Thread Andrew Gaspar
Public bug reported: If you end a FORTRAN program with the continuation character '&' followed by two newlines, gfortran SEGFAULTs when attempting to compile the program. This issue has a very minimal repro: file: test.f90 ``` end program & ``` The two newlines at the end are significant.