diff options
Diffstat (limited to 'gcc/hash-table.h')
-rw-r--r-- | gcc/hash-table.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/hash-table.h b/gcc/hash-table.h index 8e3c2ca..192be30 100644 --- a/gcc/hash-table.h +++ b/gcc/hash-table.h @@ -638,9 +638,7 @@ hash_table<Descriptor, Allocator>::find_empty_slot_for_expand (hashval_t hash) if (is_empty (*slot)) return slot; -#ifdef ENABLE_CHECKING gcc_checking_assert (!is_deleted (*slot)); -#endif hash2 = hash_table_mod2 (hash, m_size_prime_index); for (;;) @@ -652,9 +650,7 @@ hash_table<Descriptor, Allocator>::find_empty_slot_for_expand (hashval_t hash) slot = m_entries + index; if (is_empty (*slot)) return slot; -#ifdef ENABLE_CHECKING gcc_checking_assert (!is_deleted (*slot)); -#endif } } |