diff options
author | Jakub Jelinek <jakub@redhat.com> | 2013-02-13 21:47:39 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2013-02-13 21:47:39 +0100 |
commit | c4bfe8bfdb11a5fe0734b84a3c60b4db312b22f1 (patch) | |
tree | c169eabab6c01a54a69fc9413c4019ef7aaa3d74 /gcc/tree-flow.h | |
parent | 7afe28013fa88a06d0e3564dcf9e8ee5cb06c0e1 (diff) | |
download | gcc-c4bfe8bfdb11a5fe0734b84a3c60b4db312b22f1.zip gcc-c4bfe8bfdb11a5fe0734b84a3c60b4db312b22f1.tar.gz gcc-c4bfe8bfdb11a5fe0734b84a3c60b4db312b22f1.tar.bz2 |
asan.c (create_cond_insert_point): Add create_then_fallthru_edge argument.
* asan.c (create_cond_insert_point): Add create_then_fallthru_edge
argument. If it is false, don't create edge from then_bb to
fallthru_bb.
(insert_if_then_before_iter): Pass true to it.
(build_check_stmt): Pass false to it.
(transform_statements): Flush hash table only on extended basic
block boundaries, rather than at the beginning of every bb.
Don't flush hash table on nonfreeing_call_p calls.
* tree-flow.h (nonfreeing_call_p): New prototype.
* tree-ssa-phiopt.c (nonfreeing_call_p): No longer static.
From-SVN: r196029
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index a87eeae..80cb294 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -609,6 +609,7 @@ struct tree_niter_desc /* In tree-ssa-phiopt.c */ bool empty_block_p (basic_block); basic_block *blocks_in_phiopt_order (void); +bool nonfreeing_call_p (gimple); /* In tree-ssa-loop*.c */ |