diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-10-22 12:01:59 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-10-22 12:01:59 +0000 |
commit | 835b8178b6af49b010c32136c5aa49227d562691 (patch) | |
tree | 1cfd60a35211e1d5fcc4f29a8a6797c182569882 /gcc/regcprop.c | |
parent | c2598081e383dff15cfc1f23cbe83ba276deb024 (diff) | |
download | gcc-835b8178b6af49b010c32136c5aa49227d562691.tar.gz |
gcc/
* recog.h (extract_constrain_insn): Declare.
* recog.c (extract_constrain_insn): New function.
* lra.c (check_rtl): Use it.
* postreload.c (reload_cse_simplify_operands): Likewise.
* reg-stack.c (check_asm_stack_operands): Likewise.
(subst_asm_stack_regs): Likewise.
* regcprop.c (copyprop_hardreg_forward_1): Likewise.
* regrename.c (build_def_use): Likewise.
* sel-sched.c (get_reg_class): Likewise.
* config/arm/arm.c (note_invalid_constants): Likewise.
* config/s390/predicates.md (execute_operation): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@216553 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/regcprop.c')
-rw-r--r-- | gcc/regcprop.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/gcc/regcprop.c b/gcc/regcprop.c index 262de1be046..e935a357204 100644 --- a/gcc/regcprop.c +++ b/gcc/regcprop.c @@ -767,9 +767,7 @@ copyprop_hardreg_forward_1 (basic_block bb, struct value_data *vd) } set = single_set (insn); - extract_insn (insn); - if (! constrain_operands (1)) - fatal_insn_not_found (insn); + extract_constrain_insn (insn); preprocess_constraints (insn); const operand_alternative *op_alt = which_op_alt (); n_ops = recog_data.n_operands; @@ -870,9 +868,7 @@ copyprop_hardreg_forward_1 (basic_block bb, struct value_data *vd) } /* We need to re-extract as validate_change clobbers recog_data. */ - extract_insn (insn); - if (! constrain_operands (1)) - fatal_insn_not_found (insn); + extract_constrain_insn (insn); preprocess_constraints (insn); } @@ -898,9 +894,7 @@ copyprop_hardreg_forward_1 (basic_block bb, struct value_data *vd) } /* We need to re-extract as validate_change clobbers recog_data. */ - extract_insn (insn); - if (! constrain_operands (1)) - fatal_insn_not_found (insn); + extract_constrain_insn (insn); preprocess_constraints (insn); } } |