From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C61253858C52; Wed, 21 Sep 2022 21:41:39 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C61253858C52 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1663796499; bh=gXDvPOW3kxfdJu5S3CWV3KPCdNOCSvmEulw4/gkclwc=; h=From:To:Subject:Date:From; b=FqxqNCqeOdEy0hNwpVRBtJLG8IqXWlBv+6uqdwAOjcYd02gbT5aTnBCiL1UWrIqtx fVoOgsojZ+E/IC3nQyTyA+rcE8YwpSdG+jaKWhKYg5XhUTsxreNqoSiorVUhcdxgsu 1itRxYxUmwuMMJJ4d1vzbQmTNsKf1NZmmt6UbtNg= From: "hiraditya at msn dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/107005] New: gcc not exploiting undefined behavior to optimize away the result of division Date: Wed, 21 Sep 2022 21:41:39 +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: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: hiraditya at msn dot com 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107005 Bug ID: 107005 Summary: gcc not exploiting undefined behavior to optimize away the result of division Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: hiraditya at msn dot com Target Milestone: --- #include int main() { return INT_MIN / -1; } gcc -O2 main: mov eax, -2147483648 ret clang -O2 main: # @main ret https://godbolt.org/z/Tjxx3KGdK=