From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 53BA73857B89; Sat, 13 Jan 2024 09:48:24 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 53BA73857B89 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1705139304; bh=Y5t5ba+5bO23mI22XddDxAXIjE0DF4XriuEbXwCNiRo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=nYRyFXLGtK/7w76x220HDxftd8EhbdQUDj+vBR5wnpPTWt1LMeS4x79jTvEjfeu+U Bd+7p8XdQ2vE8KzAy1imPnCFdJUsk7JgFaoagFKwipaXaQbCiLBhr/Y7kjGka9sA8B YfuULsaeH/UHV9A0cLziMFoTaqvrA2hB0ub+BySM= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/113287] wrong code with __builtin_mul_overflow_p() and _BitInt() with -O3 -msse4 Date: Sat, 13 Jan 2024 09:48:21 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: wrong-code X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: tnfchris at gcc dot gnu.org X-Bugzilla-Target-Milestone: 14.0 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D113287 --- Comment #9 from GCC Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:7012a252528233ca3ced5b9230013c50b604da9b commit r14-7223-g7012a252528233ca3ced5b9230013c50b604da9b Author: Jakub Jelinek Date: Sat Jan 13 10:46:51 2024 +0100 testsuite: Fix up vect-early-break_100-pr113287.c testcase [PR113287] When the testcase was being adjusted for unsigned long -> unsigned long long, two spots using long weren't changed to long long, so the testcase still warns about UB in shifts. 2024-01-13 Jakub Jelinek PR tree-optimization/113287 * gcc.dg/vect/vect-early-break_100-pr113287.c: Use long long instead of long.=