diff options
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 db9a8d5..7e8d461 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 |