From 5fe4a3480ffb2aa21bf12b1e92c220ab575a582f Mon Sep 17 00:00:00 2001 From: Daan Leijen Date: Mon, 20 Feb 2023 12:21:06 -0800 Subject: [PATCH] revert default max align commit back to 16 --- include/mimalloc-types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mimalloc-types.h b/include/mimalloc-types.h index a7c4d3c6..f3af528e 100644 --- a/include/mimalloc-types.h +++ b/include/mimalloc-types.h @@ -19,7 +19,7 @@ terms of the MIT license. A copy of the license can be found in the file // Minimal alignment necessary. On most platforms 16 bytes are needed // due to SSE registers for example. This must be at least `sizeof(void*)` #ifndef MI_MAX_ALIGN_SIZE -#define MI_MAX_ALIGN_SIZE 8 // sizeof(max_align_t) +#define MI_MAX_ALIGN_SIZE 16 // sizeof(max_align_t) #endif // ------------------------------------------------------