http://gcc.gnu.org/bugzilla/show_bug.cgi?id=47567
--- Comment #7 from Thomas Henlich <thenlich at users dot sourceforge.net> 2011-02-05 07:45:57 UTC --- (In reply to comment #6) > Regardless of this choice, the following should all print the same result, > which they currently don't. > > print "(F1.0)", 0.0 ! => 0 > print "(F1.0)", 0.001 ! => * > print "(F1.0)", 0.01 ! => * > print "(F0.0)", 0.0 ! => 0 > print "(F0.0)", 0.001 ! => * > print "(F0.0)", 0.01 ! => * Sorry, but what I meant was that the following should print the same: print "(F1.0)", 0.0 ! => 0 print "(F1.0)", 0.001 ! => * print "(F1.0)", 0.01 ! => * And the following should print the same: print "(F0.0)", 0.0 ! => 0 print "(F0.0)", 0.001 ! => * print "(F0.0)", 0.01 ! => *