public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug fortran/40588]  New: Small bug in match_charkind_name
@ 2009-06-29 14:24 philippe dot marguinaud at meteo dot fr
  2009-06-29 15:18 ` [Bug fortran/40588] " burnus at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: philippe dot marguinaud at meteo dot fr @ 2009-06-29 14:24 UTC (permalink / raw)
  To: gcc-bugs

Looking at the code, I think that the following lines from match_charkind_name
(primary.c:830):

      if (!ISALNUM (c)
          && c != '_'
          && (gfc_option.flag_dollar_ok && c != '$'))
        break;

should be changed to:

      if (!ISALNUM (c)
          && c != '_'
          && !(gfc_option.flag_dollar_ok && c == '$'))
        break;


-- 
           Summary: Small bug in match_charkind_name
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: fortran
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: philippe dot marguinaud at meteo dot fr
 GCC build triplet: any
  GCC host triplet: any
GCC target triplet: any


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40588


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-07-13  6:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-29 14:24 [Bug fortran/40588] New: Small bug in match_charkind_name philippe dot marguinaud at meteo dot fr
2009-06-29 15:18 ` [Bug fortran/40588] " burnus at gcc dot gnu dot org
2009-07-05  9:14 ` fxcoudert at gcc dot gnu dot org
2009-07-13  6:27 ` burnus at gcc dot gnu dot org
2009-07-13  6:29 ` burnus at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).