This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/66605] -Wunused-parameter causes internal compiler error with gfortran 5.1.0
- From: "manu at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Wed, 24 Jun 2015 19:16:40 +0000
- Subject: [Bug fortran/66605] -Wunused-parameter causes internal compiler error with gfortran 5.1.0
- Auto-submitted: auto-generated
- References: <bug-66605-4 at http dot gcc dot gnu dot org/bugzilla/>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66605
--- Comment #6 from Manuel LÃpez-IbÃÃez <manu at gcc dot gnu.org> ---
Another alternative is to add support for printing %D to gfc_format_decoder, it
is a matter of adding something like:
case 'D':
if (DECL_NAME (t))
{
pp_string (pp, lang_hooks.decl_printable_name (t, 2));
return true;
}