From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 80714385B527; Fri, 21 Jul 2023 05:19:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 80714385B527 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1689916740; bh=eJuOoYALG+sRua1jgTOde+z+/mlYwlXrvNjRH121+Wo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=fBjg3fGN4jh1BHtoPvRwTdtpB7t9i2hKxarNPNSvFeHviX9YadHg92cu9Lq72q0ac plnFWwa4843zFjGnWqHR59/8vCxzKOCzJtQxTET3LGuZIIXJROFh/FyKa8Q8s5uKB2 B+c8DSxVqq/iSdxZmhLzoLb4uSIfMh10zcXIHu5U= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug other/110744] [14 regression] gcc.dg/tree-ssa/pr84512.c fails after r14-2267-gb8806f6ffbe72 Date: Fri, 21 Jul 2023 05:19:00 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: other X-Bugzilla-Version: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: linkw 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=3D110744 --- Comment #8 from CVS Commits --- The master branch has been updated by Kewen Lin : https://gcc.gnu.org/g:a6654c08fde11890d621fa7831180d410054568a commit r14-2694-ga6654c08fde11890d621fa7831180d410054568a Author: Kewen Lin Date: Fri Jul 21 00:18:19 2023 -0500 sccvn: Correct the index of bias for IFN_LEN_STORE [PR110744] Commit r14-2267-gb8806f6ffbe72e adjusts the arguments order of LEN_STORE from {len,vector,bias} to {len,bias,vector}, in order to make them consistent with LEN_MASK_STORE and MASK_STORE. But it missed to update the related handlings in tree-ssa-sccvn.cc, it caused the failure shown in PR 110744. This patch is to fix the related handlings with the correct index. PR tree-optimization/110744 gcc/ChangeLog: * tree-ssa-sccvn.cc (vn_reference_lookup_3): Correct the index = of bias operand for ifn IFN_LEN_STORE.=