aboutsummaryrefslogtreecommitdiff
path: root/gcc/regrename.c
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2014-10-22 12:01:59 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2014-10-22 12:01:59 +0000
commit75d25a02fcd6d85c314700b5b2e03743f1bec04a (patch)
tree1cfd60a35211e1d5fcc4f29a8a6797c182569882 /gcc/regrename.c
parentd95a2703476dcbacd128577bb0c41b74588132b1 (diff)
downloadgcc-75d25a02fcd6d85c314700b5b2e03743f1bec04a.zip
gcc-75d25a02fcd6d85c314700b5b2e03743f1bec04a.tar.gz
gcc-75d25a02fcd6d85c314700b5b2e03743f1bec04a.tar.bz2
recog.h (extract_constrain_insn): Declare.
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. From-SVN: r216553
Diffstat (limited to 'gcc/regrename.c')
-rw-r--r--gcc/regrename.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/regrename.c b/gcc/regrename.c
index 7b9ca45..26bc860 100644
--- a/gcc/regrename.c
+++ b/gcc/regrename.c
@@ -1569,9 +1569,7 @@ build_def_use (basic_block bb)
to be marked unrenamable or even cause us to abort the entire
basic block. */
- 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;