diff options
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index 550e3e7e238..b2e2cad28c2 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -1252,6 +1252,10 @@ parse_output_constraint (constraint_p, operand_num, ninputs, noutputs, if (REG_CLASS_FROM_LETTER (*p) != NO_REGS) *allows_reg = true; #ifdef EXTRA_CONSTRAINT + else if (EXTRA_ADDRESS_CONSTRAINT (*p)) + *allows_reg = true; + else if (EXTRA_MEMORY_CONSTRAINT (*p)) + *allows_mem = true; else { /* Otherwise we can't assume anything about the nature of @@ -1377,6 +1381,10 @@ parse_input_constraint (constraint_p, input_num, ninputs, noutputs, ninout, if (REG_CLASS_FROM_LETTER (constraint[j]) != NO_REGS) *allows_reg = true; #ifdef EXTRA_CONSTRAINT + else if (EXTRA_ADDRESS_CONSTRAINT (constraint[j])) + *allows_reg = true; + else if (EXTRA_MEMORY_CONSTRAINT (constraint[j])) + *allows_mem = true; else { /* Otherwise we can't assume anything about the nature of |