diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2014-06-11 16:59:01 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-06-11 16:59:01 +0000 |
commit | 7fd308cffa3775f62d69b63bc9b1cefced10d817 (patch) | |
tree | d44d90996a8e4988ffeaca48c18b078c652a966b /gcc/reload.c | |
parent | d9c35eee65f97e368a89148572ca8a43d0eb071c (diff) | |
download | gcc-7fd308cffa3775f62d69b63bc9b1cefced10d817.zip gcc-7fd308cffa3775f62d69b63bc9b1cefced10d817.tar.gz gcc-7fd308cffa3775f62d69b63bc9b1cefced10d817.tar.bz2 |
system.h (CONST_DOUBLE_OK_FOR_CONSTRAINT_P): Poison.
gcc/
* system.h (CONST_DOUBLE_OK_FOR_CONSTRAINT_P): Poison.
* genpreds.c (have_const_dbl_constraints): Delete.
(add_constraint): Don't set it.
(write_tm_preds_h): Don't call CONST_DOUBLE_OK_FOR_CONSTRAINT_P.
* ira-costs.c (record_reg_classes): Handle CONST_INT and CONST_DOUBLE
constraints using the lookup_constraint logic.
* ira-lives.c (single_reg_class): Likewise.
* ira.c (ira_setup_alts): Likewise.
* lra-constraints.c (process_alt_operands): Likewise.
* recog.c (asm_operand_ok, constrain_operands): Likewise.
* reload.c (find_reloads): Likewise.
From-SVN: r211474
Diffstat (limited to 'gcc/reload.c')
-rw-r--r-- | gcc/reload.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc/reload.c b/gcc/reload.c index cf2de93..d3f5a8a 100644 --- a/gcc/reload.c +++ b/gcc/reload.c @@ -3434,13 +3434,6 @@ find_reloads (rtx insn, int replace, int ind_levels, int live_known, win = 1; break; - case 'G': - case 'H': - if (CONST_DOUBLE_AS_FLOAT_P (operand) - && CONST_DOUBLE_OK_FOR_CONSTRAINT_P (operand, c, p)) - win = 1; - break; - case 's': if (CONST_SCALAR_INT_P (operand)) break; @@ -3455,19 +3448,6 @@ find_reloads (rtx insn, int replace, int ind_levels, int live_known, win = 1; break; - case 'I': - case 'J': - case 'K': - case 'L': - case 'M': - case 'N': - case 'O': - case 'P': - if (CONST_INT_P (operand) - && CONST_OK_FOR_CONSTRAINT_P (INTVAL (operand), c, p)) - win = 1; - break; - case 'X': force_reload = 0; win = 1; |