Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions compiler-rt/lib/sanitizer_common/sanitizer_platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,9 @@

// The first address that can be returned by mmap.
#if SANITIZER_AIX && SANITIZER_WORDSIZE == 64
# define SANITIZER_MMAP_BEGIN 0x0a00000000000000ULL
# define SANITIZER_MMAP_BEGIN 0x0a00000000000000ULL
#else
# define SANITIZER_MMAP_BEGIN 0
# define SANITIZER_MMAP_BEGIN 0
#endif

// The range of addresses which can be returned my mmap.
Expand Down
Loading