Skip to content

Commit 7671a1d

Browse files
committed
Use llvm::crc32 instead of crc32. NFC
llvm-svn: 357911
1 parent b33938d commit 7671a1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/DebugInfo/Symbolize/Symbolize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
164164
MemoryBuffer::getFileOrSTDIN(Path);
165165
if (!MB)
166166
return false;
167-
return CRCHash == crc32(0, MB.get()->getBuffer());
167+
return CRCHash == llvm::crc32(0, MB.get()->getBuffer());
168168
}
169169

170170
bool findDebugBinary(const std::string &OrigPath,

0 commit comments

Comments
 (0)