diff options
author | Steven Bosscher <steven@gcc.gnu.org> | 2012-12-02 15:43:16 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2012-12-02 15:43:16 +0000 |
commit | fa967f341ce38053b0baf106454139e29786d061 (patch) | |
tree | 40704ce2247e1f60996a197b9440d8b19311886f /gcc/varasm.c | |
parent | 474d486a73cc9fb511c489e902b5cea51f1ae640 (diff) | |
download | gcc-fa967f341ce38053b0baf106454139e29786d061.zip gcc-fa967f341ce38053b0baf106454139e29786d061.tar.gz gcc-fa967f341ce38053b0baf106454139e29786d061.tar.bz2 |
function.h (struct rtl_data): Remove epilogue_delay_list.
* 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.
From-SVN: r194053
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index 4c98f86..ee42afc 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -3822,18 +3822,13 @@ mark_constants (rtx insn) static void mark_constant_pool (void) { - rtx insn, link; + rtx insn; if (!crtl->uses_const_pool && n_deferred_constants == 0) return; for (insn = get_insns (); insn; insn = NEXT_INSN (insn)) mark_constants (insn); - - for (link = crtl->epilogue_delay_list; - link; - link = XEXP (link, 1)) - mark_constants (XEXP (link, 0)); } /* Write all the constants in POOL. */ |