The 64-bit runtime has a bug in output format conversion of numbers between 0.9 and 1.0 with Gn.1 format, e.g., G8.1.
program chk
implicit none
double precision x
x = 0.96d0
write(*,'(g8.1)')x
end program
The error pop-up that I first see when running the program is: https://www.dropbox.com/s/uip2iewyb0h9lkq/s1.png Only upon pressing the CONTINUE button do I see the traceback: https://www.dropbox.com/s/5z0csuea2qpa41m/s2.png There is no such problem with the 32-bit compiler.
NOTE: Someone, please provide instructions on attaching images in-line in this forum. I tried selecting the URL and pressing the Img button, but that did not work. Under forum Options I see 'HTML is OFF'. Is that the cause of the problem?