diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-02-13 20:47:39 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-02-13 20:47:39 +0000 |
commit | e8d4d8a908637488faa562e234ac2b90e0cc46ff (patch) | |
tree | c169eabab6c01a54a69fc9413c4019ef7aaa3d74 /gcc/tree-ssa-phiopt.c | |
parent | 944c79222e4ddeffd586d449597a1b5586601240 (diff) | |
download | gcc-e8d4d8a908637488faa562e234ac2b90e0cc46ff.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@196029 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-phiopt.c')
-rw-r--r-- | gcc/tree-ssa-phiopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-phiopt.c b/gcc/tree-ssa-phiopt.c index 61199437dbe..300016f7a0b 100644 --- a/gcc/tree-ssa-phiopt.c +++ b/gcc/tree-ssa-phiopt.c @@ -1339,7 +1339,7 @@ add_or_mark_expr (basic_block bb, tree exp, /* Return true when CALL is a call stmt that definitely doesn't free any memory or makes it unavailable otherwise. */ -static bool +bool nonfreeing_call_p (gimple call) { if (gimple_call_builtin_p (call, BUILT_IN_NORMAL) |