diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2023-08-13 16:50:29 +0200 |
---|---|---|
committer | Hans-Peter Nilsson <hp@bitrange.com> | 2023-08-14 04:06:16 +0200 |
commit | 4718d5c426af04b93031f89870ce9ba44b82c108 (patch) | |
tree | a93ee2ea20b363054fb2cf61e0e972847c6fc43e | |
parent | 49383cd9741f77139d1e2467e52e7ed2fbdc338c (diff) | |
download | gcc-4718d5c426af04b93031f89870ce9ba44b82c108.zip gcc-4718d5c426af04b93031f89870ce9ba44b82c108.tar.gz gcc-4718d5c426af04b93031f89870ce9ba44b82c108.tar.bz2 |
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.
-rw-r--r-- | gcc/config/mmix/predicates.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/mmix/predicates.md b/gcc/config/mmix/predicates.md index 64e77fa..3c98f26 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)"))) |