diff options
Diffstat (limited to 'gcc/ipa-icf.c')
-rw-r--r-- | gcc/ipa-icf.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/ipa-icf.c b/gcc/ipa-icf.c index bf1acae..0c76672 100644 --- a/gcc/ipa-icf.c +++ b/gcc/ipa-icf.c @@ -1543,11 +1543,8 @@ sem_item::add_type (const_tree type, inchash::hash &hstate) } type = TYPE_MAIN_VARIANT (type); - if (TYPE_CANONICAL (type)) - type = TYPE_CANONICAL (type); - if (!AGGREGATE_TYPE_P (type)) - hstate.add_int (TYPE_MODE (type)); + hstate.add_int (TYPE_MODE (type)); if (TREE_CODE (type) == COMPLEX_TYPE) { @@ -1574,6 +1571,7 @@ sem_item::add_type (const_tree type, inchash::hash &hstate) } else if (RECORD_OR_UNION_TYPE_P (type)) { + gcc_checking_assert (COMPLETE_TYPE_P (type)); hashval_t *val = optimizer->m_type_hash_cache.get (type); if (!val) |