Commit 92576357 by Segher Boessenkool Committed by Segher Boessenkool

rs6000: Make offsettable_mem_operand use any_memory_operand


	* config/rs6000/predicates.md (offsettable_mem_operand): Allow volatile
	memory.

From-SVN: r273633
parent 4f5ddf27
2019-07-20 Segher Boessenkool <segher@kernel.crashing.org> 2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
* config/rs6000/predicates.md (offsettable_mem_operand): Allow volatile
memory.
2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
* config/rs6000/predicates.md (input_operand): Allow volatile memory. * config/rs6000/predicates.md (input_operand): Allow volatile memory.
2019-07-20 Segher Boessenkool <segher@kernel.crashing.org> 2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
......
...@@ -716,7 +716,7 @@ ...@@ -716,7 +716,7 @@
;; Return 1 if the operand is an offsettable memory operand. ;; Return 1 if the operand is an offsettable memory operand.
(define_predicate "offsettable_mem_operand" (define_predicate "offsettable_mem_operand"
(and (match_operand 0 "memory_operand") (and (match_operand 0 "any_memory_operand")
(match_test "offsettable_nonstrict_memref_p (op)"))) (match_test "offsettable_nonstrict_memref_p (op)")))
;; Return 1 if the operand is a simple offsettable memory operand ;; Return 1 if the operand is a simple offsettable memory operand
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment