From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E6A02385842B; Mon, 8 Jan 2024 13:38:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E6A02385842B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1704721100; bh=y79weH5p5saVrDOZMO2ku6d9O+2q4RSkycCYPEs4BPE=; h=From:To:Subject:Date:In-Reply-To:References:From; b=fBF+d84JA5TZvD3hXxZv16yEs1d88W0TKJ32VCEFfmvGb5qp3/4UHAjjy5viz9YjW dH4YLVN0Q1dwajA/KCEdnjnchmNJhfYp9Xn/f9Uw1AIQbit31VKK+mQ2TF0j/og1cr W8/Ew4/I6iN7eCRIwmT3cULeORztfeM3wmG77eWg= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/113270] [14 Regression] AArch64 ICEs in register_tuple_type since r14-6524 Date: Mon, 08 Jan 2024 13:38:20 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D113270 --- Comment #4 from Jakub Jelinek --- Of course, another bug is that the declaration of aarch64_simd_types isn't = GTY marked: --- gcc/config/aarch64/aarch64-builtins.h.jj 2024-01-03 12:01:17.8525579= 52 +0100 +++ gcc/config/aarch64/aarch64-builtins.h 2024-01-08 14:07:00.4759446= 98 +0100 @@ -94,6 +94,6 @@ struct GTY(()) aarch64_simd_type_info enum aarch64_type_qualifiers q; }; -extern aarch64_simd_type_info aarch64_simd_types[]; +extern GTY(()) aarch64_simd_type_info aarch64_simd_types[]; #endif which means it is then ignored on the definition as well. But with the above 2 patches it fails to build because it then tries to inc= lude aarch64_simd_types references in gtype-desc.cc but doesn't include there th= at header.=