Skip to content

Commit 9b76515

Browse files
authored
[sanitizer][fuchsia] Fix fuchsia buildbot failure after 6479006 (llvm#82202)
In llvm#77488, a param `raw_report` is added for function `UnmapOrDie()`. But missing the corresponding change for fuchsia, causes the buildbot failure, see https://lab.llvm.org/buildbot/#/builders/98/builds/33593. This patch should fix the fuchsia buildbot failure.
1 parent 0ce0171 commit 9b76515

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ void *MmapAlignedOrDieOnFatalError(uptr size, uptr alignment,
413413
return reinterpret_cast<void *>(addr);
414414
}
415415

416-
void UnmapOrDie(void *addr, uptr size) {
416+
void UnmapOrDie(void *addr, uptr size, bool) {
417417
UnmapOrDieVmar(addr, size, gSanitizerHeapVmar);
418418
}
419419

0 commit comments

Comments
 (0)