aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorJan Hubicka <hubicka@ucw.cz>2015-06-04 01:13:49 +0200
committerJan Hubicka <hubicka@gcc.gnu.org>2015-06-03 23:13:49 +0000
commit93e2aa6d4599866c8be24131914512dfd8c31de2 (patch)
treede7a5c9a9e666510f95a3f68ca8db557f286982f /gcc/tree.c
parent1cc1ac7f375c34bbd7ae1605c6fc3ff37ebaa8a4 (diff)
downloadgcc-93e2aa6d4599866c8be24131914512dfd8c31de2.zip
gcc-93e2aa6d4599866c8be24131914512dfd8c31de2.tar.gz
gcc-93e2aa6d4599866c8be24131914512dfd8c31de2.tar.bz2
lto.c (iterative_hash_canonical_type, [...]): only hash main variants of types
* lto.c (iterative_hash_canonical_type, gimple_register_canonical_type): only hash main variants of types * tree.c (verify_type_variant): Verify that type and variant is compatible. (gimple_canonical_types_compatible_p): Look for main variants. From-SVN: r224107
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c19
1 files changed, 18 insertions, 1 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 701a592..b0aeb74 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -12855,6 +12855,17 @@ verify_type_variant (const_tree t, tree tv)
debug_tree (TREE_TYPE (t));
return false;
}
+ if (type_with_alias_set_p (t)
+ && !gimple_canonical_types_compatible_p (t, tv, false))
+ {
+ error ("type is not compatible with its vairant");
+ debug_tree (tv);
+ error ("type variant's TREE_TYPE");
+ debug_tree (TREE_TYPE (tv));
+ error ("type's TREE_TYPE");
+ debug_tree (TREE_TYPE (t));
+ return false;
+ }
return true;
#undef verify_variant_match
}
@@ -12879,7 +12890,13 @@ bool
gimple_canonical_types_compatible_p (const_tree t1, const_tree t2,
bool trust_type_canonical)
{
- /* Before starting to set up the SCC machinery handle simple cases. */
+ /* Type variants should be same as the main variant. When not doing sanity
+ checking to verify this fact, go to main variants and save some work. */
+ if (trust_type_canonical)
+ {
+ t1 = TYPE_MAIN_VARIANT (t1);
+ t2 = TYPE_MAIN_VARIANT (t2);
+ }
/* Check first for the obvious case of pointer identity. */
if (t1 == t2)