From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 8DBBF38515D5; Tue, 30 Mar 2021 05:49:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8DBBF38515D5 From: "david at doublewise dot net" To: gcc-bugs@gcc.gnu.org Subject: [Bug c++/80039] `constexpr` member function calls in a `constexpr` constructor are ignored if the object is defined locally Date: Tue, 30 Mar 2021 05:49:25 +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: 7.0.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: david at doublewise dot net 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: Tue, 30 Mar 2021 05:49:25 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D80039 David Stone changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david at doublewise dot net --- Comment #1 from David Stone --- Here's another reproduction ``` struct s { int m_value =3D 0; constexpr int value() const { return m_value; } constexpr s() { value(); m_value =3D 1; } }; constexpr auto x =3D s(); static_assert(x.value() =3D=3D 1); ``` Still a problem on trunk. This example shows it's not just that side effects are ignored, but also th= at the return value is cached. My guess is that there is some code path that memoizes calls to constexpr functions, replacing them with their return val= ue, and that code is getting invoked when it shouldn't be.=