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/79843] New: diagnostics: missing word in fortran/symbol.c, conflict_std


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

            Bug ID: 79843
           Summary: diagnostics: missing word in fortran/symbol.c,
                    conflict_std
           Product: gcc
           Version: 7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
          Assignee: unassigned at gcc dot gnu.org
          Reporter: roland.illig at gmx dot de
  Target Milestone: ---

from fortran/symbol.c:

conflict_std:
  if (name == NULL)
    {
      return gfc_notify_std (standard, "%s attribute "
                             "with %s attribute at %L", a1, a2,
                             where);
    }
  else
    {
      return gfc_notify_std (standard, "%s attribute "
                             "with %s attribute in %qs at %L",
                             a1, a2, name, where);
    }

These diagnostic seem to be missing the word "conflicts" before the "with".

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