From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 95562386D604; Thu, 15 Feb 2024 19:08:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 95562386D604 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1708024117; bh=aZmC61KFb0F/PkKhDCQ0iOLc2D9tCoez6tTl6Jxcodo=; h=From:To:Subject:Date:In-Reply-To:References:From; b=TE5C7vgRxdxJQgQ5gltT0Mlg3fe4wGycM++jjIdQqisBxa11MLuu3TYusfqGj8XA4 HrWvhXWU8DeyyU1yWej6S0ODMOe72gIUdpdj5KgxiOP9uRi/pr6YX92geLEvlsPKsQ lcgnakZM39K0DRp0JV1bsHE7imL48pngMbtxNkvU= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug middle-end/107385] [asm goto] "=r" vs "+r" for outputs along indirect edges Date: Thu, 15 Feb 2024 19:08:36 +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: 12.0 X-Bugzilla-Keywords: inline-asm, 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: P3 X-Bugzilla-Assigned-To: unassigned 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=3D107385 --- Comment #10 from GCC Commits --- The releases/gcc-13 branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:2354ccb493ddca6d2e1af9cc76ad45367932f1e2 commit r13-8330-g2354ccb493ddca6d2e1af9cc76ad45367932f1e2 Author: Jakub Jelinek Date: Thu Feb 15 20:04:01 2024 +0100 testsuite: Require lra effective target for pr107385.c Old reload doesn't support asm goto with output operands. We have lra effective target (though, strangely it returns 0 just for 2 targets out of at least 16 targets with no LRA support), so this patch uses it, similarly how it is done in other asm goto tests with output operands. 2024-02-15 Jakub Jelinek PR middle-end/107385 * gcc.dg/pr107385.c: Require lra effective target. (cherry picked from commit 0d5d1c75f5c68b6064640c3154ae5f4c0b464905)=