From 30f7cdcde6e9933e55e6bae37b5f5e785b28fa90 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Fri, 11 Mar 2011 09:44:49 -0500 Subject: re PR c++/48069 (FAIL: g++.old-deja/g++.pt/spec26.C) PR c++/48069 * tree.c (type_hash_eq): Use COMPLETE_TYPE_P, not COMPLETE_OR_UNBOUND_ARRAY_TYPE_P. From-SVN: r170872 --- gcc/tree.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gcc/tree.c') diff --git a/gcc/tree.c b/gcc/tree.c index 2e1b9a3..d923ac8 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -5988,8 +5988,7 @@ type_hash_eq (const void *va, const void *vb) /* Be careful about comparing arrays before and after the element type has been completed; don't compare TYPE_ALIGN unless both types are complete. */ - if (COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (a->type) - && COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (b->type) + if (COMPLETE_TYPE_P (a->type) && COMPLETE_TYPE_P (b->type) && (TYPE_ALIGN (a->type) != TYPE_ALIGN (b->type) || TYPE_MODE (a->type) != TYPE_MODE (b->type))) return 0; -- cgit v1.1