majnemer added inline comments. ================ Comment at: llvm/lib/DebugInfo/PDB/Raw/HashTable.cpp:189 + return; + uint32_t NewCapacity = capacity() * 2; + ---------------- Should we assert that `NewCapacity` is bigger than `capacity()`? https://reviews.llvm.org/D28715