From f33fc9b85c0d942ee775f65875a52676c1d897dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Herczeg?= Date: Tue, 22 Jan 2019 08:51:48 +0000 Subject: [PATCH] JIT compiler update. --- src/sljit/sljitExecAllocator.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/sljit/sljitExecAllocator.c b/src/sljit/sljitExecAllocator.c index 7a97114..3b37a97 100644 --- a/src/sljit/sljitExecAllocator.c +++ b/src/sljit/sljitExecAllocator.c @@ -95,19 +95,18 @@ static SLJIT_INLINE void free_chunk(void *chunk, sljit_uw size) #else #ifdef __APPLE__ -// Configures TARGET_OS_MAC when appropriate. +/* Configures TARGET_OS_OSX when appropriate */ #include -#if defined TARGET_OS_MAC && defined MAP_JIT +#if TARGET_OS_OSX && defined(MAP_JIT) #include -#endif /* TARGET_OS_MAC && MAP_JIT */ -#endif /* __APPLE__ */ +#endif /* TARGET_OS_OSX && MAP_JIT */ #ifdef MAP_JIT static SLJIT_INLINE int get_map_jit_flag() { -#ifdef TARGET_OS_MAC +#if TARGET_OS_OSX /* On macOS systems, returns MAP_JIT if it is defined _and_ we're running on a version of macOS where it's OK to have more than one JIT block. On non-macOS systems, returns MAP_JIT if it is defined. */ @@ -126,13 +125,15 @@ static SLJIT_INLINE int get_map_jit_flag() } return map_jit_flag; -#else /* !TARGET_OS_MAC */ +#else /* !TARGET_OS_OSX */ return MAP_JIT; -#endif /* TARGET_OS_MAC */ +#endif /* TARGET_OS_OSX */ } #endif /* MAP_JIT */ +#endif /* __APPLE__ */ + static SLJIT_INLINE void* alloc_chunk(sljit_uw size) { void *retval;