diff options
Diffstat (limited to 'gcc/lto/lto.c')
-rw-r--r-- | gcc/lto/lto.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/lto/lto.c b/gcc/lto/lto.c index b1e2d6e..dcfa3c8 100644 --- a/gcc/lto/lto.c +++ b/gcc/lto/lto.c @@ -1166,7 +1166,9 @@ compare_tree_sccs_1 (tree t1, tree t2, tree **map) compare_values (TYPE_READONLY); compare_values (TYPE_PRECISION); compare_values (TYPE_ALIGN); - compare_values (TYPE_ALIAS_SET); + /* Do not compare TYPE_ALIAS_SET. Doing so introduce ordering issues + with calls to get_alias_set which may initialize it for streamed + in types. */ } /* We don't want to compare locations, so there is nothing do compare |