https://gcc.gnu.org/bugzilla/show_bug.cgi?id=116376
Jakub Jelinek <jakub at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jakub at gcc dot gnu.org --- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> --- Such genpreds works just fine for me on x86_64-linux. Generally, hash table shouldn't be expanded when it is empty. If hash-table isn't Lazy, m_entries should be initialized already during construction, if it is Lazy, then find_slot_with_hash should initialize it instead of doing expand. And traverse similarly doesn't call expand if Lazy and m_entries is NULL (if !Lazy, then m_entries is never NULL).