mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 00:31:30 +08:00
re PR middle-end/37601 (gcc-4.4-20080919 ada build failure)
PR middle-end/37601 * gcc-interface/utils.c (gnat_types_compatible_p): Handle NULL TYPE_DOMAIN. From-SVN: r141092
This commit is contained in:
parent
dc66391d69
commit
0adef32bee
@ -1,3 +1,9 @@
|
||||
2008-10-13 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR middle-end/37601
|
||||
* gcc-interface/utils.c (gnat_types_compatible_p): Handle
|
||||
NULL TYPE_DOMAIN.
|
||||
|
||||
2008-10-07 Eric Botcazou <ebotcazou@adacore.com>
|
||||
|
||||
* gcc-interface/decl.c (gnat_to_gnu_entity) <object>: Move code
|
||||
|
@ -2444,10 +2444,13 @@ gnat_types_compatible_p (tree t1, tree t2)
|
||||
the same component type and the same domain. */
|
||||
if (code == ARRAY_TYPE
|
||||
&& TREE_TYPE (t1) == TREE_TYPE (t2)
|
||||
&& tree_int_cst_equal (TYPE_MIN_VALUE (TYPE_DOMAIN (t1)),
|
||||
TYPE_MIN_VALUE (TYPE_DOMAIN (t2)))
|
||||
&& tree_int_cst_equal (TYPE_MAX_VALUE (TYPE_DOMAIN (t1)),
|
||||
TYPE_MAX_VALUE (TYPE_DOMAIN (t2))))
|
||||
&& (TYPE_DOMAIN (t1) == TYPE_DOMAIN (t2)
|
||||
|| (TYPE_DOMAIN (t1)
|
||||
&& TYPE_DOMAIN (t2)
|
||||
&& tree_int_cst_equal (TYPE_MIN_VALUE (TYPE_DOMAIN (t1)),
|
||||
TYPE_MIN_VALUE (TYPE_DOMAIN (t2)))
|
||||
&& tree_int_cst_equal (TYPE_MAX_VALUE (TYPE_DOMAIN (t1)),
|
||||
TYPE_MAX_VALUE (TYPE_DOMAIN (t2))))))
|
||||
return 1;
|
||||
|
||||
/* Padding record types are also compatible if they pad the same
|
||||
|
Loading…
x
Reference in New Issue
Block a user