From a075418fbdc727b335bd9089b9d95b970d23b272 Mon Sep 17 00:00:00 2001 From: Francesco Biscani Date: Sun, 1 Sep 2024 10:09:45 +0200 Subject: [PATCH] Revert "Temporarily disable parjit on MSVC for Python debugging. [skip ci]" [skip ci] This reverts commit 3a3f9bf1111771456f93c744a7560196c16b8d33. --- include/heyoka/llvm_state.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/heyoka/llvm_state.hpp b/include/heyoka/llvm_state.hpp index 46c1d81d6..4ee929cbf 100644 --- a/include/heyoka/llvm_state.hpp +++ b/include/heyoka/llvm_state.hpp @@ -353,7 +353,7 @@ void llvm_state_mem_cache_try_insert(std::vector, unsigned, llvm_mc // functions, which leads to compilation failure. So far, we have been able to // trigger this issue only on 64-bit arm. inline constexpr bool default_parjit = -#if defined(HEYOKA_ARCH_ARM) || defined(_MSC_VER) +#if defined(HEYOKA_ARCH_ARM) false #else true