aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow.h
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-07-26 10:27:50 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-07-26 10:27:50 +0000
commit7e98624c5eefcd77b90ad1ebbbc06ab17b005a32 (patch)
treed94c1fef3d48e52ac95d22884ff2b915e9ee622d /gcc/tree-flow.h
parent0ee0208eccd3d707d8accf2626cbe934faa7cecd (diff)
downloadgcc-7e98624c5eefcd77b90ad1ebbbc06ab17b005a32.zip
gcc-7e98624c5eefcd77b90ad1ebbbc06ab17b005a32.tar.gz
gcc-7e98624c5eefcd77b90ad1ebbbc06ab17b005a32.tar.bz2
configure.ac: Add types checking to stage1 checking flags.
2007-07-26 Richard Guenther <rguenther@suse.de> toplev/ * configure.ac: Add types checking to stage1 checking flags. * configure: Regenerate. gcc/ * tree-cfg.c (verify_gimple_unary_expr, verify_gimple_binary_expr, verify_gimple_min_lval, verify_gimple_reference, verify_gimple_expr, verify_gimple_modify_stmt, verify_gimple_stmt, verify_gimple_1, verify_gimple): New functions. * tree-flow.h (verify_gimple): Declare. (verify_gimple_1): Declare. * gimplify.c (cpt_same_type): Remove. (gimplify_addr_expr): Remove checking code. (check_pointer_types_r): Remove. (gimplify_body): Call verify_gimple_1 instead of check_pointer_types_r. Only verify if there were no errors. * configure.ac: Add types checking flag. * configure: Regenerate. * config.in: Regenerate. From-SVN: r126951
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r--gcc/tree-flow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
index c314ed5..e67bd0a 100644
--- a/gcc/tree-flow.h
+++ b/gcc/tree-flow.h
@@ -752,6 +752,8 @@ extern void bsi_commit_edge_inserts (void);
extern void notice_special_calls (tree);
extern void clear_special_calls (void);
extern void verify_stmts (void);
+extern void verify_gimple (void);
+extern void verify_gimple_1 (tree);
extern tree tree_block_label (basic_block);
extern void extract_true_false_edges_from_block (basic_block, edge *, edge *);
extern bool tree_duplicate_sese_region (edge, edge, basic_block *, unsigned,