We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
LLVMRustCoverageHashByteArray
1 parent 7a5ad35 commit 7292608Copy full SHA for 7292608
compiler/rustc_llvm/llvm-wrapper/CoverageMappingWrapper.cpp
@@ -165,7 +165,7 @@ extern "C" uint64_t LLVMRustCoverageHashCString(const char *StrVal) {
165
166
extern "C" uint64_t LLVMRustCoverageHashByteArray(
167
const char *Bytes,
168
- unsigned NumBytes) {
+ size_t NumBytes) {
169
StringRef StrRef(Bytes, NumBytes);
170
return IndexedInstrProf::ComputeHash(StrRef);
171
}
0 commit comments