aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2020-07-17 00:08:45 -0700
committerVitaly Buka <vitalybuka@google.com>2020-07-17 00:08:45 -0700
commitdbf39e54f648771e5e4e9fb0b787c1b74e74dffd (patch)
treeb0a9f704d385f57edaaa43c0e39221072ee35346
parent1cb8cc1fd1b9b8191a101008d9fdf5cc5992a929 (diff)
downloadllvm-dbf39e54f648771e5e4e9fb0b787c1b74e74dffd.zip
llvm-dbf39e54f648771e5e4e9fb0b787c1b74e74dffd.tar.gz
llvm-dbf39e54f648771e5e4e9fb0b787c1b74e74dffd.tar.bz2
[sanitizer] Revert accidentally committed file
-rw-r--r--compiler-rt/lib/sanitizer_common/sanitizer_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_common.h b/compiler-rt/lib/sanitizer_common/sanitizer_common.h
index df9088b..bf6ca73 100644
--- a/compiler-rt/lib/sanitizer_common/sanitizer_common.h
+++ b/compiler-rt/lib/sanitizer_common/sanitizer_common.h
@@ -109,7 +109,7 @@ void *MmapFixedOrDie(uptr fixed_addr, uptr size, const char *name = nullptr);
void *MmapFixedOrDieOnFatalError(uptr fixed_addr, uptr size,
const char *name = nullptr);
void *MmapFixedNoAccess(uptr fixed_addr, uptr size, const char *name = nullptr);
-void *MmapNoAccess(uptr size, const char *name = nullptr);
+void *MmapNoAccess(uptr size);
// Map aligned chunk of address space; size and alignment are powers of two.
// Dies on all but out of memory errors, in the latter case returns nullptr.
void *MmapAlignedOrDieOnFatalError(uptr size, uptr alignment,