diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-02 09:18:14 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-07-02 09:18:14 +0000 |
commit | 548044d85fdaafbef1ca42016dd468ef9dd0f734 (patch) | |
tree | 8b3a78c0cdf460cfb8a6f13264704d3ffe64d60c /gcc/tree-predcom.c | |
parent | b7ef846404d09903d8e9d15a3e42fff8e93ab7ed (diff) | |
download | gcc-548044d85fdaafbef1ca42016dd468ef9dd0f734.tar.gz |
2007-07-02 Richard Guenther <rguenther@suse.de>
* tree-flow.h (tree_ssa_useless_type_conversion_1): Rename to ...
(useless_type_conversion_p): ... this.
* tree-ssa.c (tree_ssa_useless_type_conversion_1): Rename to ...
(useless_type_conversion_p): ... this.
* builtins.c (fold_builtin_memory_op): Rename
tree_ssa_useless_type_conversion_1 to useless_type_conversion_p.
* tree-cfg.c (verify_expr): Likewise.
* tree-ssa-address.c (tree_ssa_useless_type_conversion_1): Likewise.
* tree-ssa-ccp.c (ccp_fold): Likewise.
* tree-ssa-copy.c (may_propagate_copy): Likewise.
* tree-ssa-dom.c (eliminate_redundant_computations): Likewise.
* tree-ssa-forwprop.c (forward_propagate_addr_expr_1): Likewise.
* tree-ssa-loop-niter.c (refine_bounds_using_guard): Likewise.
* tree-ssa-pre.c (eliminate): Likewise.
* tree-ssa.c (delete_tree_ssa): Likewise.
(tree_ssa_useless_type_conversion): Likewise.
* tree.c (build2_stat): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126194 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-predcom.c')
-rw-r--r-- | gcc/tree-predcom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-predcom.c b/gcc/tree-predcom.c index db9a8d509f0..7e8d4615a7b 100644 --- a/gcc/tree-predcom.c +++ b/gcc/tree-predcom.c @@ -633,7 +633,7 @@ determine_offset (struct data_reference *a, struct data_reference *b, /* Check that both the references access the location in the same type. */ typea = TREE_TYPE (DR_REF (a)); typeb = TREE_TYPE (DR_REF (b)); - if (!tree_ssa_useless_type_conversion_1 (typeb, typea)) + if (!useless_type_conversion_p (typeb, typea)) return false; /* Check whether the base address and the step of both references is the |