Use llvm::crc32 instead of crc32. NFC

llvm-svn: 357911
This commit is contained in:
Eugene Leviant 2019-04-08 13:40:58 +00:00
parent b33938df7a
commit 7671a1daa7
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
MemoryBuffer::getFileOrSTDIN(Path);
if (!MB)
return false;
return CRCHash == crc32(0, MB.get()->getBuffer());
return CRCHash == llvm::crc32(0, MB.get()->getBuffer());
}
bool findDebugBinary(const std::string &OrigPath,