Revision: 1061
http://www.exim.org/viewvc/pcre2?view=rev&revision=1061
Author: zherczeg
Date: 2019-01-22 08:51:48 +0000 (Tue, 22 Jan 2019)
Log Message:
-----------
JIT compiler update.
Modified Paths:
--------------
code/trunk/src/sljit/sljitExecAllocator.c
Modified: code/trunk/src/sljit/sljitExecAllocator.c
===================================================================
--- code/trunk/src/sljit/sljitExecAllocator.c 2019-01-18 14:14:19 UTC (rev 1060)
+++ code/trunk/src/sljit/sljitExecAllocator.c 2019-01-22 08:51:48 UTC (rev 1061)
@@ -95,19 +95,18 @@
#else
#ifdef __APPLE__
-// Configures TARGET_OS_MAC when appropriate.
+/* Configures TARGET_OS_OSX when appropriate */
#include <TargetConditionals.h>
-#if defined TARGET_OS_MAC && defined MAP_JIT
+#if TARGET_OS_OSX && defined(MAP_JIT)
#include <sys/utsname.h>
-#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 @@
}
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;