forked from OSchip/llvm-project
parent
b33938df7a
commit
7671a1daa7
|
@ -164,7 +164,7 @@ bool checkFileCRC(StringRef Path, uint32_t CRCHash) {
|
||||||
MemoryBuffer::getFileOrSTDIN(Path);
|
MemoryBuffer::getFileOrSTDIN(Path);
|
||||||
if (!MB)
|
if (!MB)
|
||||||
return false;
|
return false;
|
||||||
return CRCHash == crc32(0, MB.get()->getBuffer());
|
return CRCHash == llvm::crc32(0, MB.get()->getBuffer());
|
||||||
}
|
}
|
||||||
|
|
||||||
bool findDebugBinary(const std::string &OrigPath,
|
bool findDebugBinary(const std::string &OrigPath,
|
||||||
|
|
Loading…
Reference in New Issue