Commit 614ed70a by Joseph Myers Committed by Joseph Myers

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
parent f05ef422
2004-07-03 Joseph S. Myers <jsm@polyomino.org.uk>
* tree.c (type_hash_eq): Allow TYPE_MIN_VALUE which compares equal
with tree_int_cst_equal.
2004-07-03 Andreas Schwab <schwab@suse.de> 2004-07-03 Andreas Schwab <schwab@suse.de>
* config/ia64/ia64.md: Define new attribute "empty". * config/ia64/ia64.md: Define new attribute "empty".
......
...@@ -3198,7 +3198,7 @@ type_hash_eq (const void *va, const void *vb) ...@@ -3198,7 +3198,7 @@ type_hash_eq (const void *va, const void *vb)
|| tree_int_cst_equal (TYPE_MAX_VALUE (a->type), || tree_int_cst_equal (TYPE_MAX_VALUE (a->type),
TYPE_MAX_VALUE (b->type))) TYPE_MAX_VALUE (b->type)))
&& (TYPE_MIN_VALUE (a->type) == TYPE_MIN_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)))); TYPE_MIN_VALUE (b->type))));
case OFFSET_TYPE: case OFFSET_TYPE:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment