[Bug fortran/58001] Make it possible to silence "Extension: Tab character in format" warning

manu at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Thu Aug 4 14:39:00 GMT 2016


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58001

Manuel López-Ibáñez <manu at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |manu at gcc dot gnu.org

--- Comment #12 from Manuel López-Ibáñez <manu at gcc dot gnu.org> ---
(In reply to Steve Kargl from comment #9)
> +      if (!gfc_option.warn_tabs && c == '\t')
> +	  gfc_warning ("Nonconforming tab character in FORMAT at %C");
>      }

Nowadays, this would be:

if (c == '\t')
 gfc_warning (OPT_Wtabs, Nonconforming tab character in FORMAT at %C");

Cheers,

Manuel.


More information about the Gcc-bugs mailing list