From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 3D39C3858D37; Sun, 21 Apr 2024 16:34:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3D39C3858D37 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1713717246; bh=DGLvU0a6gbh/bt/W69yHrl6VeOQXPZ1rsSXe7nAshE8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=kElTblab+pZAIFMthaXs6KoWhT2q5p+LxTKGK1oYPuN0aJ0wu3B4Px+Dr3g/Gf+Eo QWCRuc71lniPgBpVlDhc/ZwEBeBvJ3rf+1oDJQJ+UDDHQLyXgI2v+N9rl0b4+sAXdT h9lLbiukgYFFeFxcKj1FbsgLwpQY6amQe7p0gVGg= From: "pault at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/103471] Missed no IMPLICIT type errors Date: Sun, 21 Apr 2024 16:34:05 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: pault at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 11.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc 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=3D103471 Paul Thomas changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[11/12/13/14 Regression] |Missed no IMPLICIT type |ICE in |errors |gfc_typenode_for_spec, at | |fortran/trans-types.c:1114 | --- Comment #12 from Paul Thomas --- The regression has been cured in the above commit and some of the missed er= ror messages have been fixed. Compared with the submission to the list and discussed with Harald Anlauf, = an extra chunk has been added in resolve.cc(resolve_actual_arglist) to catch untyped actual arguments. See the testcase commented out line for an example interference between different statements with untyped symbols. I am keeping this one open having changed the summary. Paul=