This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/34427] [4.3 Regression] Revision 130708 breaks namelist input
- From: "jakub at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 12 Dec 2007 01:14:39 -0000
- Subject: [Bug fortran/34427] [4.3 Regression] Revision 130708 breaks namelist input
- References: <bug-34427-682@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #20 from jakub at gcc dot gnu dot org 2007-12-12 01:14 -------
When you mention that, is it right that you are pushing different chars than
what has been actually read? E.g.:
c = tolower (next_char (dtp));
l_push_char (dtp, c);
Shouldn't that be instead:
c = next_char (dtp);
l_push_char (dtp, c);
c = tolower (c);
?
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34427