mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:51:00 +08:00
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:
parent
269c14e111
commit
69f724c026
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user