diff options
Diffstat (limited to 'gcc/reload.c')
| -rw-r--r-- | gcc/reload.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/gcc/reload.c b/gcc/reload.c index 4dd36f02ae9..e2eccf6b109 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -3142,21 +3142,18 @@ find_reloads (insn, replace, ind_levels, live_known, reload_reg_p) = (int) reg_class_subunion[this_alternative[i]][(int) GENERAL_REGS]; goto reg; + default: + if (REG_CLASS_FROM_LETTER (c) == NO_REGS) + { #ifdef EXTRA_CONSTRAINT - case 'Q': - case 'R': - case 'S': - case 'T': - case 'U': - if (EXTRA_CONSTRAINT (operand, c)) - win = 1; - break; + if (EXTRA_CONSTRAINT (operand, c)) + win = 1; #endif + break; + } - default: this_alternative[i] = (int) reg_class_subunion[this_alternative[i]][(int) REG_CLASS_FROM_LETTER (c)]; - reg: if (GET_MODE (operand) == BLKmode) break; |

