aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/gcc-interface/decl.c
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2018-02-02 18:09:58 +0000
committerEric Botcazou <ebotcazou@gcc.gnu.org>2018-02-02 18:09:58 +0000
commitdacdc68f3bd5e7c4de0dd54f9dcb1465686ac01a (patch)
tree68191fae7ddfba51fd55ae27bfe30d1659ab4d37 /gcc/ada/gcc-interface/decl.c
parentee034d3108105353a2130a2d0d3630e5f8214811 (diff)
downloadgcc-dacdc68f3bd5e7c4de0dd54f9dcb1465686ac01a.zip
gcc-dacdc68f3bd5e7c4de0dd54f9dcb1465686ac01a.tar.gz
gcc-dacdc68f3bd5e7c4de0dd54f9dcb1465686ac01a.tar.bz2
decl.c (array_type_has_nonaliased_component): Return false if the component type is a pointer.
* gcc-interface/decl.c (array_type_has_nonaliased_component): Return false if the component type is a pointer. From-SVN: r257344
Diffstat (limited to 'gcc/ada/gcc-interface/decl.c')
-rw-r--r--gcc/ada/gcc-interface/decl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ada/gcc-interface/decl.c b/gcc/ada/gcc-interface/decl.c
index e8c48c7..e0466f3 100644
--- a/gcc/ada/gcc-interface/decl.c
+++ b/gcc/ada/gcc-interface/decl.c
@@ -6113,6 +6113,11 @@ array_type_has_nonaliased_component (tree gnu_type, Entity_Id gnat_type)
return TYPE_NONALIASED_COMPONENT (gnu_parent_type);
}
+ /* Consider that an array of pointers has an aliased component, which is
+ sort of logical and helps with Taft Amendment types in LTO mode. */
+ if (POINTER_TYPE_P (TREE_TYPE (gnu_type)))
+ return false;
+
/* Otherwise, rely exclusively on properties of the element type. */
return type_for_nonaliased_component_p (TREE_TYPE (gnu_type));
}