[Bug fortran/82372] Rejects valid parenthesis

2017-10-15 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82372 Thomas Koenig changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|---

[Bug fortran/82372] Rejects valid parenthesis

2017-10-15 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82372 --- Comment #5 from Thomas Koenig --- Author: tkoenig Date: Sun Oct 15 12:00:29 2017 New Revision: 253768 URL: https://gcc.gnu.org/viewcvs?rev=253768=gcc=rev Log: 2017-10-15 Thomas Koenig PR fortran/82372

[Bug fortran/82372] Rejects valid parenthesis

2017-10-09 Thread tkoenig at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82372 Thomas Koenig changed: What|Removed |Added Status|NEW |ASSIGNED CC|

[Bug fortran/82372] Rejects valid parenthesis

2017-09-30 Thread dominiq at lps dot ens.fr
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82372 Dominique d'Humieres changed: What|Removed |Added Status|UNCONFIRMED |NEW Last reconfirmed|

[Bug fortran/82372] Rejects valid parenthesis

2017-09-30 Thread jvdelisle at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82372 --- Comment #2 from Jerry DeLisle --- $ cat bug1.f90 program vincenty implicit none real, parameter :: f = .2345 real :: tmp tmp = 1.0 − f end program $ gfc49 bug1.f90 bug1.f90:7: tmp = 1.0 \xE2\x88\x92 f 1 Error: Unclassifiable statement

[Bug fortran/82372] Rejects valid parenthesis

2017-09-29 Thread jvdelisle at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82372 --- Comment #1 from Jerry DeLisle --- Another, reduced: program vincenty implicit none integer, parameter :: wp = selected_real_kind (18) ! Working Precision real(wp), parameter :: f = 1.0_wp/298.257223563_wp real(wp) :: tmp tmp = 1.0 − f