From f6539107b8804bcc3532e748f3f596c5a8b29b44 Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Sat, 5 Oct 2024 18:18:31 -0400 Subject: [PATCH] hppa: Fix indirect_goto constraint Noticed testing LRA. 2024-10-05 John David Anglin gcc/ChangeLog: * config/pa/pa.md: Fix indirect_got constraint. --- gcc/config/pa/pa.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index f0520bb2c35..fae9e430554 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -7426,7 +7426,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")