From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 8711F386F46F; Tue, 26 Jan 2021 18:09:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8711F386F46F From: "nunoplopes at sapo dot pt" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/98842] New: optional's spaceship operations generates wrong code when operator== is not present Date: Tue, 26 Jan 2021 18:09:59 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 11.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: nunoplopes at sapo dot pt 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: 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, 26 Jan 2021 18:09:59 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D98842 Bug ID: 98842 Summary: optional's spaceship operations generates wrong code when operator=3D=3D is not present Product: gcc Version: 11.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: nunoplopes at sapo dot pt Target Milestone: --- struct expr { std::strong_ordering operator<=3D>(const expr &rhs) const; //bool operator=3D=3D(const expr &rhs) const; }; int f() { return std::is_eq(std::optional() <=3D> std::optional()); //return std::optional() =3D=3D std::optional(); } Function f() is compiled to 0 like that. But if you uncomment the expr::operator=3D=3D line, it returns 1. https://gcc.godbolt.org/z/fv85eP=