From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 5509D389365C; Sat, 25 Apr 2020 16:25:52 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5509D389365C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1587831952; bh=gffkZLfpyKCl+6YfHHhp9g/tbOL8fw5TLZeZv6ysldQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=xC67fG2yWkvYU4TuU9Hr77gi7bW1qNUTvXCK8IE9d0CMxl7ALEDBAoGLfBJAc787w KNx6hdxUilyXHPIcwkmT4osyseHTavoIHXOlECaZ++1lnUgGscKAV32TPpe6UlvnQW dtgf0XEgWgxPrEV/iURJ73FfN+nGCjPDlF76BzEo= From: "tkoenig at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/94737] BIND(C) names are not always treated as case sensitive. Date: Sat, 25 Apr 2020 16:25:52 +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: 8.1.0 X-Bugzilla-Keywords: rejects-valid X-Bugzilla-Severity: normal X-Bugzilla-Who: tkoenig at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: INVALID X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 8.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status short_desc resolution 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Apr 2020 16:25:52 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D94737 Thomas Koenig changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Summary|[8/9/10 Regression] BIND(C) |BIND(C) names are not |names are not always |always treated as case |treated as case sensitive. |sensitive. Resolution|--- |INVALID --- Comment #2 from Thomas Koenig --- Correction, this is not a regression. F2018 has, in 19.2, paragraph 2 # The global identifier of an entity shall not be the same as the global # identifier of any other entity. Furthermore, a binding label shall not # be the same as the global identifier of any other global entity, # ignoring differences in case. So, the error message is correct, and you need to change your program accordingly.=