https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82372
Thomas Koenig changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
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&root=gcc&view=rev
Log:
2017-10-15 Thomas Koenig
PR fortran/82372
* fortran/
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82372
Thomas Koenig changed:
What|Removed |Added
Status|NEW |ASSIGNED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82372
Dominique d'Humieres changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
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
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
en