mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-06 15:29:31 +03:00
possible fix for warnings on armv6 (issue #719)
This commit is contained in:
parent
a52ba65f65
commit
43be9c2909
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ typedef int32_t mi_ssize_t;
|
||||||
// Derived constants
|
// Derived constants
|
||||||
#define MI_SEGMENT_SIZE (MI_ZU(1)<<MI_SEGMENT_SHIFT)
|
#define MI_SEGMENT_SIZE (MI_ZU(1)<<MI_SEGMENT_SHIFT)
|
||||||
#define MI_SEGMENT_ALIGN (MI_SEGMENT_SIZE)
|
#define MI_SEGMENT_ALIGN (MI_SEGMENT_SIZE)
|
||||||
#define MI_SEGMENT_MASK (MI_SEGMENT_ALIGN - 1)
|
#define MI_SEGMENT_MASK ((uintptr_t)(MI_SEGMENT_ALIGN - 1))
|
||||||
|
|
||||||
#define MI_SMALL_PAGE_SIZE (MI_ZU(1)<<MI_SMALL_PAGE_SHIFT)
|
#define MI_SMALL_PAGE_SIZE (MI_ZU(1)<<MI_SMALL_PAGE_SHIFT)
|
||||||
#define MI_MEDIUM_PAGE_SIZE (MI_ZU(1)<<MI_MEDIUM_PAGE_SHIFT)
|
#define MI_MEDIUM_PAGE_SIZE (MI_ZU(1)<<MI_MEDIUM_PAGE_SHIFT)
|
||||||
|
|
Loading…
Add table
Reference in a new issue