diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Raw/Hash.cpp | 4 | ||||
-rw-r--r-- | llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp b/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp index 8d327b340d4..06cbd940fc2 100644 --- a/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp +++ b/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp @@ -17,7 +17,7 @@ using namespace llvm::support; // Corresponds to `Hasher::lhashPbCb` in PDB/include/misc.h. // Used for name hash table and TPI/IPI hashes. -uint32_t pdb::HashStringV1(StringRef Str) { +uint32_t pdb::hashStringV1(StringRef Str) { uint32_t Result = 0; uint32_t Size = Str.size(); @@ -53,7 +53,7 @@ uint32_t pdb::HashStringV1(StringRef Str) { // Corresponds to `HasherV2::HashULONG` in PDB/include/misc.h. // Used for name hash table. -uint32_t pdb::HashStringV2(StringRef Str) { +uint32_t pdb::hashStringV2(StringRef Str) { uint32_t Hash = 0xb170a1bf; ArrayRef<char> Buffer(Str.begin(), Str.end()); diff --git a/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp b/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp index b182b70f006..ae4ebf27721 100644 --- a/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp +++ b/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp @@ -80,7 +80,7 @@ StringRef NameHashTable::getStringForID(uint32_t ID) const { } uint32_t NameHashTable::getIDForString(StringRef Str) const { - uint32_t Hash = (HashVersion == 1) ? HashStringV1(Str) : HashStringV2(Str); + uint32_t Hash = (HashVersion == 1) ? hashStringV1(Str) : hashStringV2(Str); size_t Count = IDs.size(); uint32_t Start = Hash % Count; for (size_t I = 0; I < Count; ++I) { |