diff options
author | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-24 09:48:41 +0000 |
---|---|---|
committer | espindola <espindola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-04-24 09:48:41 +0000 |
commit | ced5bc56a892f34678fa445d3921ca683e5a4b64 (patch) | |
tree | 831bbe410099a9e9cd9808e14ec5ced2f9d783b4 /gcc/tree-flow.h | |
parent | 06d44c0023d428f85e616b7dd0ddcc9b81e8cbb8 (diff) | |
download | gcc-ced5bc56a892f34678fa445d3921ca683e5a4b64.tar.gz |
2008-04-24 Rafael Espindola <espindola@google.com>
* tree-flow.h (vrp_evaluate_conditional): Change signature.
* tree-ssa-propagate.c (fold_predicate_in): Update call to
vrp_evaluate_conditional.
* tree-vrp.c (vrp_evaluate_conditional_warnv): Remove.
(vrp_evaluate_conditional): Split the cond argument.
(vrp_visit_cond_stmt): Use vrp_evaluate_conditional_warnv_with_ops.
(simplify_stmt_for_jump_threading): Update call to
vrp_evaluate_conditional.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@134625 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 03d1ba5ee5d..f26181fb9e1 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -944,7 +944,7 @@ tree get_symbol_constant_value (tree); tree fold_const_aggregate_ref (tree); /* In tree-vrp.c */ -tree vrp_evaluate_conditional (tree, tree); +tree vrp_evaluate_conditional (enum tree_code, tree, tree, tree); void simplify_stmt_using_ranges (tree); /* In tree-ssa-dom.c */ |