From f05f360debba5bb7b096f7ad8b6effc8c084609c Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Wed, 8 Jun 2016 23:15:09 +0000 Subject: Function names should start with lowercase letters. llvm-svn: 272225 --- llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp') diff --git a/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp b/llvm/lib/DebugInfo/PDB/Raw/NameHashTable.cpp index b182b70f..ae4ebf2 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) { -- cgit v1.1