From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 5B2F03858CD1; Mon, 11 Mar 2024 18:18:35 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5B2F03858CD1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1710181115; bh=9IpuzT3+mmSCtNiYq6EyeOcF+8meqkAqoO3gP1oF6PU=; h=From:To:Subject:Date:In-Reply-To:References:From; b=Al3gpjUYolUR7PPLjUAabzB0xrr7uaguDkOnV8RPHqmnJBHPyuk+JJOggcpwx7AJE j9BbuN7VUeXAj0V5jVZ0KLBqPXNcUlVc03I6g7h+SfJpPO67dSH1Y632KvjulBTDb+ iadhZgAF5deBzYCEiLraSzF5Sp1Emzg4LvbA5ZVs= From: "jvdelisle at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyBsaWJmb3J0cmFuLzExNDMwNF0gWzEzLzE0IFJlZ3Jlc3Np?= =?UTF-8?B?b25dIGxpYmdmb3J0cmFuIEkvTyDigJMgYm9ndXMgIlNlbWljb2xvbiBub3Qg?= =?UTF-8?B?YWxsb3dlZCBhcyBzZXBhcmF0b3Igd2l0aCBERUNJTUFMPSdwb2ludCci?= Date: Mon, 11 Mar 2024 18:18:34 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libfortran X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jvdelisle at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: jvdelisle at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D114304 Jerry DeLisle changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|unassigned at gcc dot gnu.org |jvdelisle at gcc do= t gnu.org --- Comment #8 from Jerry DeLisle --- This gets around the bogus error and makes sense to me. However with your reduced test case I get and EOF error later. I also get this EOF witt gfor= tran 9. I have not checked 10, 11, or 12 yet. If I can build lapack cleanly I will push this as sort of obvious. $ git diff diff --git a/libgfortran/io/list_read.c b/libgfortran/io/list_read.c index e38e9a84976..c23c2bb2048 100644 --- a/libgfortran/io/list_read.c +++ b/libgfortran/io/list_read.c @@ -481,10 +481,10 @@ eat_separator (st_parameter_dt *dtp) break; case ';': - if (dtp->u.p.current_unit->decimal_status =3D=3D DECIMAL_POINT) + if (dtp->u.p.current_unit->decimal_status =3D=3D DECIMAL_COMMA) { generate_error (&dtp->common, LIBERROR_READ_VALUE, - "Semicolon not allowed as separator with DECIMAL=3D'point'"); + "Semicolon not allowed as separator with DECIMAL=3D'comma'"); unget_char (dtp, c); break; }=