diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2014-10-22 12:01:59 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-10-22 12:01:59 +0000 |
commit | 75d25a02fcd6d85c314700b5b2e03743f1bec04a (patch) | |
tree | 1cfd60a35211e1d5fcc4f29a8a6797c182569882 /gcc/lra.c | |
parent | d95a2703476dcbacd128577bb0c41b74588132b1 (diff) | |
download | gcc-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/lra.c')
-rw-r--r-- | gcc/lra.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1923,8 +1923,9 @@ check_rtl (bool final_p) { if (final_p) { - extract_insn (insn); - lra_assert (constrain_operands (1)); +#ifdef ENABLED_CHECKING + extract_constrain_insn (insn); +#endif continue; } /* LRA code is based on assumption that all addresses can be |