From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 055743858409; Fri, 31 Dec 2021 15:11:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 055743858409 From: "steve+gcc at tecwec dot eu" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/36566] Cannot bind packed field Date: Fri, 31 Dec 2021 15:11:13 +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: 4.2.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: steve+gcc at tecwec dot eu 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: cc 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: Fri, 31 Dec 2021 15:11:14 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D36566 Eric Estievenart changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |steve+gcc at tecwec dot eu --- Comment #14 from Eric Estievenart --- What about: struct S { int i; } __attribute__((__packed__)) __attribute((aligned(8))); void f( S* s ) { int& i =3D s->i; // Error here } S::i is obviously properly aligned, the compiler should know it and accept = the referencing. As for the argument 'the field might be unaligned and this would violate...= and crash...', I don=C2=B4t really agree. The compiler knows the arch, the alig= nment, and it can decide: - to emit an error if unaligned(or unknown) if alignment required by arch - to emit a warning on other arch Note by the way that this seems accepted by clang...=