diff options
author | NAKAMURA Usaku <[email protected]> | 2021-12-31 20:13:11 +0900 |
---|---|---|
committer | NAKAMURA Usaku <[email protected]> | 2021-12-31 20:13:11 +0900 |
commit | a493732c8e4d038885ae40c71dd3fc5118f36809 (patch) | |
tree | 7aee89f307d6e5440f17230fd9963bb86bd4fe7d /yjit.h | |
parent | 93591d31b07ca6c644b6322ed2936b455cfa0b84 (diff) |
re-enabled YJIT on x64-mswin64
note that YJIT does not work correctly on the platform now.
Diffstat (limited to 'yjit.h')
-rw-r--r-- | yjit.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ #endif // We generate x86 assembly -#if defined(__x86_64__) +#if (defined(__x86_64__) && !defined(_WIN32)) || (defined(_WIN32) && defined(_M_AMD64)) // x64 platforms without mingw/msys # define YJIT_SUPPORTED_P 1 #else # define YJIT_SUPPORTED_P 0 |