summaryrefslogtreecommitdiff
path: root/gcc/cfganal.h
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@ucw.cz>2015-12-20 06:50:29 +0100
committerJan Hubicka <hubicka@gcc.gnu.org>2015-12-20 05:50:29 +0000
commite4dbb0d449e778bc810d0d627a5aaefd0d7847b1 (patch)
tree4c773d3276204110d797dfcd28b3e1f57d3fbbf6 /gcc/cfganal.h
parente07e03ddc14c0cb38b388812c9d5d07fd940a78f (diff)
downloadgcc-e4dbb0d449e778bc810d0d627a5aaefd0d7847b1.tar.gz
re PR tree-optimization/65337 (LTO bootstrap failure with Ada enabled)
PR middle-end/65337 * tree-ssa-dce.c (bb_postorder): New static var. (forward_edge_to_pdom): Remove. (remove_dead_stmt): Instead of redirecting edges only keep an edge on a path to nearest live BB. (eliminate_unnecessary_stmts): Free bb_postorder. * cfganal.c (dfs_find_deadend): Add START_POINTES. * cfganal.h (inverted_post_order_compute): Update prototype. From-SVN: r231856
Diffstat (limited to 'gcc/cfganal.h')
-rw-r--r--gcc/cfganal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cfganal.h b/gcc/cfganal.h
index 2ad00c0e705..8c32d100372 100644
--- a/gcc/cfganal.h
+++ b/gcc/cfganal.h
@@ -62,7 +62,7 @@ extern void add_noreturn_fake_exit_edges (void);
extern void connect_infinite_loops_to_exit (void);
extern int post_order_compute (int *, bool, bool);
extern basic_block dfs_find_deadend (basic_block);
-extern int inverted_post_order_compute (int *);
+extern int inverted_post_order_compute (int *, sbitmap *start_points = 0);
extern int pre_and_rev_post_order_compute_fn (struct function *,
int *, int *, bool);
extern int pre_and_rev_post_order_compute (int *, int *, bool);