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.
1 parent b356b2b commit 10c6031Copy full SHA for 10c6031
compiler-rt/lib/sanitizer_common/sanitizer_platform.h
@@ -319,7 +319,11 @@
319
#endif
320
321
// The first address that can be returned by mmap.
322
-#define SANITIZER_MMAP_BEGIN 0
+#if SANITIZER_AIX && SANITIZER_WORDSIZE == 64
323
+# define SANITIZER_MMAP_BEGIN 0x0a00000000000000ULL
324
+#else
325
+# define SANITIZER_MMAP_BEGIN 0
326
+#endif
327
328
// The range of addresses which can be returned my mmap.
329
// FIXME: this value should be different on different platforms. Larger values
0 commit comments