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
This commit is contained in:
Jeff Law 1996-03-11 17:08:58 -07:00
parent 269c14e111
commit 69f724c026

View File

@ -1862,7 +1862,12 @@ constrain_operands (insn_code_num, strict)
case 'V':
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;
break;