From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 7D8F33861002; Mon, 4 Dec 2023 13:26:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7D8F33861002 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1701696398; bh=rJRTNHzbqbPARqsQzMivexajh4N4RJa66mFnYyJfcK8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=xRU5gpIYwgKEfrvB4Fj/oRK5xahrJhrxUrtjXbjKLiqXY2TbN15RtVZyOBOHzFR2w OL4MuxQN4n/eqtz1kgqXOOez954rcb0ZgSXTZLj4aTCC/NoLkKtp0PsEk029ju4Bby I/vulMmT6fMhC19OF5YLguwMzOFhF5vzxch1Bvfg= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: =?UTF-8?B?W0J1ZyB0cmVlLW9wdGltaXphdGlvbi8xMTI4MThdIFsxNCByZWdy?= =?UTF-8?B?ZXNzaW9uXSBJQ0Ugd2hlbiBidWlsZGluZyBhY2NlbC1wcHAgKGVycm9yOiBj?= =?UTF-8?B?b252ZXJzaW9uIG9mIHJlZ2lzdGVyIHRvIGEgZGlmZmVyZW50IHNpemUgaW4g?= =?UTF-8?B?4oCYdmlld19jb252ZXJ0X2V4cHLigJksIHZlcmlmeV9naW1wbGUgZmFpbGVk?= =?UTF-8?B?KSBzaW5jZSByMTQtNTA2OC1nODhhY2E5MTdlYjcwNWI=?= Date: Mon, 04 Dec 2023 13:26:38 +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: ice-on-valid-code, needs-bisection 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: rguenth 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=3D112818 --- Comment #8 from GCC Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:80d67d8f682a6050a3bf4dcfa18a83f321986f2a commit r14-6116-g80d67d8f682a6050a3bf4dcfa18a83f321986f2a Author: Richard Biener Date: Mon Dec 4 12:50:36 2023 +0100 tree-optimization/112818 - re-instantiate vector type size check for bs= wap For __builtin_bswap vectorization we still require an equal vector type size. Re-instantiate that check. PR tree-optimization/112818 * tree-vect-stmts.cc (vectorizable_bswap): Check input and output vector types have the same size. * gcc.dg/vect/pr112818.c: New testcase.=