aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-affine.h
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@linaro.org>2017-12-20 12:56:12 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2017-12-20 12:56:12 +0000
commita85d87b20c607cdcb878901cee8535bdd35489d4 (patch)
tree078faf71983d09893b8c5e739f41a6643dd7b2c7 /gcc/tree-affine.h
parentc036acdeecba22a4cb826a3dd21904154265a581 (diff)
downloadgcc-a85d87b20c607cdcb878901cee8535bdd35489d4.zip
gcc-a85d87b20c607cdcb878901cee8535bdd35489d4.tar.gz
gcc-a85d87b20c607cdcb878901cee8535bdd35489d4.tar.bz2
poly_int: get_inner_reference_aff
This patch makes get_inner_reference_aff return the size as a poly_widest_int rather than a widest_int. 2017-12-20 Richard Sandiford <richard.sandiford@linaro.org> Alan Hayward <alan.hayward@arm.com> David Sherwood <david.sherwood@arm.com> gcc/ * tree-affine.h (get_inner_reference_aff): Return the size as a poly_widest_int. * tree-affine.c (get_inner_reference_aff): Likewise. * tree-data-ref.c (dr_may_alias_p): Update accordingly. * tree-ssa-loop-im.c (mem_refs_may_alias_p): Likewise. Co-Authored-By: Alan Hayward <alan.hayward@arm.com> Co-Authored-By: David Sherwood <david.sherwood@arm.com> From-SVN: r255891
Diffstat (limited to 'gcc/tree-affine.h')
-rw-r--r--gcc/tree-affine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-affine.h b/gcc/tree-affine.h
index d6802eb..d2140b7 100644
--- a/gcc/tree-affine.h
+++ b/gcc/tree-affine.h
@@ -80,7 +80,7 @@ bool aff_combination_constant_multiple_p (aff_tree *, aff_tree *,
void aff_combination_expand (aff_tree *, hash_map<tree, name_expansion *> **);
void tree_to_aff_combination_expand (tree, tree, aff_tree *,
hash_map<tree, name_expansion *> **);
-tree get_inner_reference_aff (tree, aff_tree *, widest_int *);
+tree get_inner_reference_aff (tree, aff_tree *, poly_widest_int *);
void free_affine_expand_cache (hash_map<tree, name_expansion *> **);
bool aff_comb_cannot_overlap_p (aff_tree *, const poly_widest_int &,
const poly_widest_int &);