From: Joseph Myers Date: Sat, 3 Jul 2004 19:59:11 +0000 (+0100) Subject: tree.c (type_hash_eq): Allow TYPE_MIN_VALUE which compares equal with tree_int_cst_equal. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=614ed70a597544644d86a8346e0158acec5886c1;p=gcc.git tree.c (type_hash_eq): Allow TYPE_MIN_VALUE which compares equal with tree_int_cst_equal. * tree.c (type_hash_eq): Allow TYPE_MIN_VALUE which compares equal with tree_int_cst_equal. From-SVN: r84062 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5ecb9a48587..e1b222a8a06 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-07-03 Joseph S. Myers + + * tree.c (type_hash_eq): Allow TYPE_MIN_VALUE which compares equal + with tree_int_cst_equal. + 2004-07-03 Andreas Schwab * config/ia64/ia64.md: Define new attribute "empty". diff --git a/gcc/tree.c b/gcc/tree.c index bc6d3aec1eb..64d2dd55c13 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -3198,7 +3198,7 @@ type_hash_eq (const void *va, const void *vb) || tree_int_cst_equal (TYPE_MAX_VALUE (a->type), TYPE_MAX_VALUE (b->type))) && (TYPE_MIN_VALUE (a->type) == TYPE_MIN_VALUE (b->type) - && tree_int_cst_equal (TYPE_MIN_VALUE (a->type), + || tree_int_cst_equal (TYPE_MIN_VALUE (a->type), TYPE_MIN_VALUE (b->type)))); case OFFSET_TYPE: