Commit 4f5ddf27 by Segher Boessenkool Committed by Segher Boessenkool

rs6000: Make input_operand use any_memory_operand


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

From-SVN: r273632
parent 45986ed9
2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
* config/rs6000/predicates.md (input_operand): Allow volatile memory.
2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
* config/rs6000/predicates.md (lwa_operand): Allow volatile memory.
2019-07-20 Segher Boessenkool <segher@kernel.crashing.org>
......
......@@ -1031,7 +1031,7 @@
const_double,const_wide_int,const_vector,const_int")
{
/* Memory is always valid. */
if (memory_operand (op, mode))
if (any_memory_operand (op, mode))
return 1;
/* For floating-point, easy constants are valid. */
......
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