diff mbox series

[committed] MMIX: Switch to lra_in_progress

Message ID alpine.BSF.2.20.16.2308132219360.11350@arjuna.pair.com
State New
Headers show
Series [committed] MMIX: Switch to lra_in_progress | expand

Commit Message

Hans-Peter Nilsson Aug. 14, 2023, 2:20 a.m. UTC
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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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 @@  (define_predicate "mmix_reg_or_8bit_operand"
 ;; 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)")))