1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00

Function names should start with lowercase letters.

llvm-svn: 272225
This commit is contained in:
Rui Ueyama 2016-06-08 23:15:09 +00:00
parent 2142edaac4
commit a11c98620e
3 changed files with 5 additions and 5 deletions

View File

@ -14,8 +14,8 @@
namespace llvm {
namespace pdb {
uint32_t HashStringV1(StringRef Str);
uint32_t HashStringV2(StringRef Str);
uint32_t hashStringV1(StringRef Str);
uint32_t hashStringV2(StringRef Str);
}
}

View File

@ -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());

View File

@ -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) {