[Bug libfortran/48785] BOZ editing of real numbers not working with -std=f2008
burnus at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Mon May 2 13:45:00 GMT 2011
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48785
--- Comment #5 from Tobias Burnus <burnus at gcc dot gnu.org> 2011-05-02 13:40:29 UTC ---
(In reply to comment #2)
> Created attachment 24162 [details]
> Proposed patch for input/output
- if (!(compile_options.allow_std & GFC_STD_GNU)
+ if (!(compile_options.allow_std & (GFC_STD_GNU | GFC_STD_F2008))
As mentioned in comment 1, replacing GFC_STD_GNU by GFC_STD_F2008 should be
sufficient without OR-ing the two.
More information about the Gcc-bugs
mailing list