From d35bb1293f8307f460c867a143d4456a7eedbcf6 Mon Sep 17 00:00:00 2001 From: Logan McNaughton <848146+loganmc10@users.noreply.github.com> Date: Mon, 2 Sep 2024 19:27:19 +0200 Subject: [PATCH] update parallel rsp --- parallel-rsp/jit_allocator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parallel-rsp/jit_allocator.cpp b/parallel-rsp/jit_allocator.cpp index 4207fab..5100e60 100644 --- a/parallel-rsp/jit_allocator.cpp +++ b/parallel-rsp/jit_allocator.cpp @@ -14,7 +14,7 @@ namespace RSP { namespace JIT { -#if TARGET_OS_TV // tvOS is 64bit but does not allow an infinite amount of VA space +#ifdef IOS // iOS/tvOS is 64bit but does not allow an infinite amount of VA space static constexpr bool huge_va = false; #else static constexpr bool huge_va = std::numeric_limits::max() > 0x100000000ull;