From: ebotcazou Date: Thu, 2 Dec 2010 22:02:30 +0000 (+0000) Subject: * tree.c (build_range_type_1): Do not SET_TYPE_STRUCTURAL_EQUALITY X-Git-Tag: upstream/4.9.2~24421 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=058eb28d49458ac2f8c8e7e6250bfaf9ad918882;p=platform%2Fupstream%2Flinaro-gcc.git * tree.c (build_range_type_1): Do not SET_TYPE_STRUCTURAL_EQUALITY for a non-shared type. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167393 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ec354d6..5bcef5d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2010-12-02 Eric Botcazou + + * tree.c (build_range_type_1): Do not SET_TYPE_STRUCTURAL_EQUALITY + for a non-shared type. + 2010-12-02 Sebastian Pop PR middle-end/45297 diff --git a/gcc/tree.c b/gcc/tree.c index 3a41244..5f48ec7 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -7096,6 +7096,7 @@ static tree build_range_type_1 (tree type, tree lowval, tree highval, bool shared) { tree itype = make_node (INTEGER_TYPE); + hashval_t hashcode = 0; TREE_TYPE (itype) = type; @@ -7109,6 +7110,9 @@ build_range_type_1 (tree type, tree lowval, tree highval, bool shared) TYPE_ALIGN (itype) = TYPE_ALIGN (type); TYPE_USER_ALIGN (itype) = TYPE_USER_ALIGN (type); + if (!shared) + return itype; + if ((TYPE_MIN_VALUE (itype) && TREE_CODE (TYPE_MIN_VALUE (itype)) != INTEGER_CST) || (TYPE_MAX_VALUE (itype) @@ -7120,13 +7124,10 @@ build_range_type_1 (tree type, tree lowval, tree highval, bool shared) return itype; } - if (shared) - { - hashval_t hash = iterative_hash_expr (TYPE_MIN_VALUE (itype), 0); - hash = iterative_hash_expr (TYPE_MAX_VALUE (itype), hash); - hash = iterative_hash_hashval_t (TYPE_HASH (type), hash); - itype = type_hash_canon (hash, itype); - } + hashcode = iterative_hash_expr (TYPE_MIN_VALUE (itype), hashcode); + hashcode = iterative_hash_expr (TYPE_MAX_VALUE (itype), hashcode); + hashcode = iterative_hash_hashval_t (TYPE_HASH (type), hashcode); + itype = type_hash_canon (hashcode, itype); return itype; }