From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 43390389365F; Thu, 30 Apr 2020 04:46:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 43390389365F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1588221986; bh=kjzVJoPVRfbEsrZ45upypmP4N6aZ8x58s1GtKla7iYI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=YCPRHN2kSMPBVlcopqAg6+H9+XjXSXnYx5jRzRRhHXsl+SjhJ84T2Bw5IKlPbDpme WkIG7ERmQr9lsZ8rUgsUloSQ4NrXctXY1TavtVkBIwcJkzRDhA6+nRv+Jfrq35IAkX vtBv48eILfdBp3DRAGne4L+6RlGK5TxWax1+/Xlc= From: "casner at acm dot org" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/94835] ICE in vague_linkage_p, at cp/decl2.c:2041 Date: Thu, 30 Apr 2020 04:46:26 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c++ X-Bugzilla-Version: 10.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: casner at acm dot org X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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: Thu, 30 Apr 2020 04:46:26 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D94835 --- Comment #4 from Stephen Casner --- I verified that the compilation of chrono:544 is the first time in the build that the failing assert is executed, so that likely implies that the proble= m is general and not specific to the particular source code. The only mentions of COMDAT in the pdp11 backend are the macros #define TARGET_CXX_CLASS_DATA_ALWAYS_COMDAT hook_bool_void_false #define TARGET_CXX_LIBRARY_RTTI_COMDAT hook_bool_void_false These are in the direction that make the assert true rather than false, so changing those to the default hook_bool_void_true wouldn't help (and would presumably cause something else to fail). I'm way out of my league here, so any suggestions would be appreciated.=