This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


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.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]