Commit 69f724c0 by Jeff Law

recog.c (constrain_operands, case 'V'): Don't call offsettable_memref_p before…

recog.c (constrain_operands, case 'V'): Don't call offsettable_memref_p before reload has completed.

        * recog.c (constrain_operands, case 'V'): Don't call
        offsettable_memref_p before reload has completed.

From-SVN: r11515
parent 269c14e1
...@@ -1862,7 +1862,12 @@ constrain_operands (insn_code_num, strict) ...@@ -1862,7 +1862,12 @@ constrain_operands (insn_code_num, strict)
case 'V': case 'V':
if (GET_CODE (op) == MEM if (GET_CODE (op) == MEM
&& ! offsettable_memref_p (op)) && ((strict > 0 && ! offsettable_memref_p (op))
|| (strict < 0
&& !(CONSTANT_P (op) || GET_CODE (op) == MEM))
|| (reload_in_progress
&& !(GET_CODE (op) == REG
&& REGNO (op) >= FIRST_PSEUDO_REGISTER))))
win = 1; win = 1;
break; break;
......
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