From patchwork Sat Oct 5 22:28:11 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John David Anglin X-Patchwork-Id: 1993188 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=8.43.85.97; helo=server2.sourceware.org; envelope-from=gcc-patches-bounces~incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=patchwork.ozlabs.org) Received: from server2.sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4XLg6w5w1Qz1xtH for ; Sun, 6 Oct 2024 09:28:36 +1100 (AEDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 489F53860008 for ; Sat, 5 Oct 2024 22:28:34 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from dellerweb.de (unknown [IPv6:2a02:c207:3003:236::1]) by sourceware.org (Postfix) with ESMTPS id BB8D83858D20 for ; Sat, 5 Oct 2024 22:28:14 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org BB8D83858D20 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=parisc-linux.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=parisc-linux.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org BB8D83858D20 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=2a02:c207:3003:236::1 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1728167296; cv=none; b=ZCPW1GXFBIMscrzLZCFhH6LZq9WKSBsT4wQ/bXFS7+u9zkSrsupP63NDNf6r94q7C+I91sKT+xoBnRIODBm1kadyxBGco0rrS7bRIt3bmgkZ6+TFllLSscwuOQRXi0Vm3uOYtZBMhdRuYdMDMCxh/C5ruYl/5u90efvsuSnufVE= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1728167296; c=relaxed/simple; bh=396mevmeOqOMEkWRIri6qf7O2Vgt6fxmoet3VrCluYU=; h=Date:From:To:Subject:Message-ID:MIME-Version; b=VaSCbtZ9n+Q/79/t4II0F3+FMsQ+DQ7fc/IhIp14V03FF+5URUOOQ+kBXFImNTJJTs/ij2DFnxmnuVfbR19A7yVszxZby4Xc7jCRmA0A3hUM5ir+Cy0Afy+nA1B6faCfinghV4UVsbT7EFkqml/6fvEIyKo6r6gndNXShkHG16o= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from mx3210.localdomain (bras-base-otwaon0906w-grc-03-142-126-114-136.dsl.bell.ca [142.126.114.136]) by dellerweb.de (Postfix) with ESMTPSA id 31CF21600061; Sun, 6 Oct 2024 00:28:13 +0200 (CEST) Received: by mx3210.localdomain (Postfix, from userid 1000) id AC7D7D6031F; Sat, 5 Oct 2024 18:28:11 -0400 (EDT) Date: Sat, 5 Oct 2024 18:28:11 -0400 From: John David Anglin To: GCC Patches Subject: [committed] hppa: Fix indirect_goto constraint Message-ID: MIME-Version: 1.0 Content-Disposition: inline X-Spam-Status: No, score=-7.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP, URIBL_DBL_SPAM autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gcc-patches-bounces~incoming=patchwork.ozlabs.org@gcc.gnu.org Tested on hppa-unknown-linux-gnu and hppa64-hp-hpux11.11. Commited to active branches. Dave --- hppa: Fix indirect_goto constraint Noticed testing LRA. 2024-10-05 John David Anglin gcc/ChangeLog: * config/pa/pa.md: Fix indirect_got constraint. diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index f0520bb2c35..2f82b431c0c 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -7426,7 +7425,7 @@ }) (define_insn "indirect_goto" - [(unspec [(match_operand 0 "register_operand" "=r")] UNSPEC_GOTO)] + [(unspec [(match_operand 0 "register_operand" "r")] UNSPEC_GOTO)] "GET_MODE (operands[0]) == word_mode" "bv%* %%r0(%0)" [(set_attr "type" "branch")