]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
MMIX: Switch to lra_in_progress
authorHans-Peter Nilsson <hp@axis.com>
Sun, 13 Aug 2023 14:50:29 +0000 (16:50 +0200)
committerHans-Peter Nilsson <hp@bitrange.com>
Mon, 14 Aug 2023 02:06:16 +0000 (04:06 +0200)
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.

gcc/config/mmix/predicates.md

index 64e77fa92d001b9dce404a47adae5e34757125d5..3c98f2686aa84d4364968c18dc398d4b1387da8f 100644 (file)
 ;; 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)")))