From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 07B933858D39; Sun, 4 Jun 2023 08:15:20 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 07B933858D39 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1685866520; bh=d+4JvMbdO6/nfkmaLdBenKiGKi7nXsW8yKED77aZ2mk=; h=From:To:Subject:Date:From; b=V9gboBskwDqFXJyJc7NbHO8LjlnvFRtbUVbjgfEFbY9tdCZ86mBSR+T1WRb9UHHCb ZLBi3im1G7Qnyj5V9Erx0i6Bmx/qwfdIHfDPXUjnQGW3cm63QXVi2xILlbSQhtiaGn j/QlvfjuusEF2GP7TvG+lfjC2dGmmgqaAi56uZ8E= From: "pinskia at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/110111] New: bool patterns that should produce a?b:c Date: Sun, 04 Jun 2023 08:15:18 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: missed-optimization X-Bugzilla-Severity: enhancement X-Bugzilla-Who: pinskia at gcc dot gnu.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: bug_id short_desc product version bug_status keywords 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D110111 Bug ID: 110111 Summary: bool patterns that should produce a?b:c Product: gcc Version: 14.0 Status: UNCONFIRMED Keywords: missed-optimization Severity: enhancement Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: pinskia at gcc dot gnu.org Target Milestone: --- Take: ``` bool f(bool a, bool b, bool c) { if (a) return b; return c; } bool f1(bool a, bool b, bool c) { return a & b | (!a & c); } bool f2(bool a, bool b, bool c) { return a & b | (a < c); } ``` All 3 should produce the same code.=