From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 6E0E73857C68; Mon, 18 Dec 2023 12:00:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6E0E73857C68 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1702900806; bh=eFIxTsGdHZawIWZMPGtnEWL8xiD+xiclK6NzGRZfR1o=; h=From:To:Subject:Date:In-Reply-To:References:From; b=yGy9tIdtq9XYk8kwbdGXNcO8cy8y6hHcbckmCMqSXKmYpuITFDo8z2w+J8TfpD4BG 8XhG5eooiSTH0d/i5C5hHE6CUm0bL1yEWc1NBJsPis0EuBW+VbBofn9ukwKUz6Exei 1NOlUGXUJpr7iQq0pMZGvQ8qzoM+LMQxpPgf+fco= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/111975] gimple front end can't round-trip vectorized code Date: Mon, 18 Dec 2023 12:00:04 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: middle-end 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: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- 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=3D111975 --- Comment #3 from GCC Commits --- The master branch has been updated by Richard Biener : https://gcc.gnu.org/g:5bca321faa30c4fb46225efbe2698a13b3271b1c commit r14-6658-g5bca321faa30c4fb46225efbe2698a13b3271b1c Author: Richard Biener Date: Mon Dec 18 11:41:03 2023 +0100 c/111975 - GIMPLE FE dumping and parsing of TARGET_MEM_REF The following adds dumping of TARGET_MEM_REF in -gimple form and adds parsing of it to the GIMPLE FE. PR c/111975 gcc/c/ * gimple-parser.cc (c_parser_gimple_postfix_expression): Parse TARGET_MEM_REF extended operands for __MEM. gcc/ * tree-pretty-print.cc (dump_mem_ref): Use TDF_GIMPLE path also for TARGET_MEM_REF and amend it. gcc/testsuite/ * gcc.dg/gimplefe-52.c: New testcase.=