From: Hans-Peter Nilsson Date: Sun, 13 Aug 2023 14:50:29 +0000 (+0200) Subject: MMIX: Switch to lra_in_progress X-Git-Tag: basepoints/gcc-15~6949 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4718d5c426af04b93031f89870ce9ba44b82c108;p=thirdparty%2Fgcc.git MMIX: Switch to lra_in_progress This is just a mechanical update. It fixes no observed problems for LRA. * config/mmix/predicates.md (mmix_address_operand): Use lra_in_progress, not reload_in_progress. --- diff --git a/gcc/config/mmix/predicates.md b/gcc/config/mmix/predicates.md index 64e77fa92d00..3c98f2686aa8 100644 --- a/gcc/config/mmix/predicates.md +++ b/gcc/config/mmix/predicates.md @@ -158,7 +158,7 @@ ;; See also comment above the "*call_real" pattern. (define_predicate "mmix_address_operand" - (if_then_else (match_test "reload_in_progress || reload_completed") + (if_then_else (match_test "lra_in_progress || reload_completed") (match_test "strict_memory_address_p (Pmode, op)") (match_test "memory_address_p (Pmode, op)")))