diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-02 15:43:16 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-12-02 15:43:16 +0000 |
commit | d052c312c5545c50dee633d0d2a2436ea4e7af21 (patch) | |
tree | 40704ce2247e1f60996a197b9440d8b19311886f /gcc/cfgrtl.c | |
parent | ed90efe5646972bfea51fba2eb63d732c87da604 (diff) | |
download | gcc-d052c312c5545c50dee633d0d2a2436ea4e7af21.tar.gz |
* function.h (struct rtl_data): Remove epilogue_delay_list.
* reorg.c (find_end_label): Simplify always-true test.
(optimize_skip): Likewise.
* final.c (leaf_function_p): Don't loop over epilogue_delay_list.
(leaf_renumber_regs): Likewise.
* varasm.c (mark_constant_pool): Likewise.
* except.c (set_nothrow_function_flags): Likewise.
* cfgrtl.c (print_rtl_with_bb): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@194053 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgrtl.c')
-rw-r--r-- | gcc/cfgrtl.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/cfgrtl.c b/gcc/cfgrtl.c index 197f8718116..386dedefd4b 100644 --- a/gcc/cfgrtl.c +++ b/gcc/cfgrtl.c @@ -2015,14 +2015,6 @@ print_rtl_with_bb (FILE *outf, const_rtx rtx_first, int flags) free (end); free (in_bb_p); } - - if (crtl->epilogue_delay_list != 0) - { - fprintf (outf, "\n;; Insns in epilogue delay list:\n\n"); - for (tmp_rtx = crtl->epilogue_delay_list; tmp_rtx != 0; - tmp_rtx = XEXP (tmp_rtx, 1)) - print_rtl_single (outf, XEXP (tmp_rtx, 0)); - } } /* Update the branch probability of BB if a REG_BR_PROB is present. */ |