mirror of git://gcc.gnu.org/git/gcc.git
gensupport.c (std_preds): Add missing codes to address_operand entry.
gcc/ * gensupport.c (std_preds): Add missing codes to address_operand entry. From-SVN: r222511
This commit is contained in:
parent
85ebc1938f
commit
0060d7d71e
|
|
@ -1,3 +1,7 @@
|
|||
2015-04-28 Richard Sandiford <richard.sandiford@arm.com>
|
||||
|
||||
* gensupport.c (std_preds): Add missing codes to address_operand entry.
|
||||
|
||||
2015-04-28 Richard Biener <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/65851
|
||||
|
|
|
|||
|
|
@ -2800,7 +2800,8 @@ struct std_pred_table
|
|||
|
||||
static const struct std_pred_table std_preds[] = {
|
||||
{"general_operand", false, true, {SUBREG, REG, MEM}},
|
||||
{"address_operand", true, true, {SUBREG, REG, MEM, PLUS, MINUS, MULT}},
|
||||
{"address_operand", true, true, {SUBREG, REG, MEM, PLUS, MINUS, MULT,
|
||||
ZERO_EXTEND, SIGN_EXTEND, AND}},
|
||||
{"register_operand", false, false, {SUBREG, REG}},
|
||||
{"pmode_register_operand", true, false, {SUBREG, REG}},
|
||||
{"scratch_operand", false, false, {SCRATCH, REG}},
|
||||
|
|
|
|||
Loading…
Reference in New Issue