aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2016-06-08 23:15:09 +0000
committerRui Ueyama <ruiu@google.com>2016-06-08 23:15:09 +0000
commitf05f360debba5bb7b096f7ad8b6effc8c084609c (patch)
treeefb899c82b8df9499007182cc02194754dde5ee4 /llvm/lib/DebugInfo/PDB/Raw/Hash.cpp
parent8e7e76729d5f39856bd829f36a7f5a42217ac90e (diff)
downloadllvm-f05f360debba5bb7b096f7ad8b6effc8c084609c.zip
llvm-f05f360debba5bb7b096f7ad8b6effc8c084609c.tar.gz
llvm-f05f360debba5bb7b096f7ad8b6effc8c084609c.tar.bz2
Function names should start with lowercase letters.
llvm-svn: 272225
Diffstat (limited to 'llvm/lib/DebugInfo/PDB/Raw/Hash.cpp')
-rw-r--r--llvm/lib/DebugInfo/PDB/Raw/Hash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp b/llvm/lib/DebugInfo/PDB/Raw/Hash.cpp
index 8d327b3..06cbd94 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());