aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-cfg.h
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2014-04-30 08:06:49 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2014-04-30 08:06:49 +0000
commite9ff9caf265a47e747c12de69bcf5bd6db32843e (patch)
tree89764a65392e04dc94709cea493bd321464376f5 /gcc/tree-cfg.h
parentf8ed5150c3a1f821fb0cf266fc0fca76027fbef9 (diff)
downloadgcc-e9ff9caf265a47e747c12de69bcf5bd6db32843e.zip
gcc-e9ff9caf265a47e747c12de69bcf5bd6db32843e.tar.gz
gcc-e9ff9caf265a47e747c12de69bcf5bd6db32843e.tar.bz2
passes.c (execute_function_todo): Move TODO_verify_stmts and TODO_verify_ssa under the TODO_verify_il umbrella.
2014-04-30 Richard Biener <rguenther@suse.de> * passes.c (execute_function_todo): Move TODO_verify_stmts and TODO_verify_ssa under the TODO_verify_il umbrella. * tree-ssa.h (verify_ssa): Adjust prototype. * tree-ssa.c (verify_ssa): Add parameter to tell whether we should verify SSA operands. * tree-cfg.h (verify_gimple_in_cfg): Adjust prototype. * tree-cfg.c (verify_gimple_in_cfg): Add parameter to tell whether we should verify whether not throwing stmts have EH info. * graphite-scop-detection.c (create_sese_edges): Adjust. * tree-ssa-loop-manip.c (verify_loop_closed_ssa): Likewise. * tree-eh.c (lower_try_finally_switch): Do not add the default case label twice. From-SVN: r209928
Diffstat (limited to 'gcc/tree-cfg.h')
-rw-r--r--gcc/tree-cfg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-cfg.h b/gcc/tree-cfg.h
index a115df5..751d0a2 100644
--- a/gcc/tree-cfg.h
+++ b/gcc/tree-cfg.h
@@ -58,7 +58,7 @@ extern gimple first_stmt (basic_block);
extern gimple last_stmt (basic_block);
extern gimple last_and_only_stmt (basic_block);
extern void verify_gimple_in_seq (gimple_seq);
-extern void verify_gimple_in_cfg (struct function *);
+extern void verify_gimple_in_cfg (struct function *, bool);
extern tree gimple_block_label (basic_block);
extern void add_phi_args_after_copy_bb (basic_block);
extern void add_phi_args_after_copy (basic_block *, unsigned, edge);