mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
re-enabled YJIT on x64-mswin64
note that YJIT does not work correctly on the platform now.
This commit is contained in:
parent
93591d31b0
commit
a493732c8e
1 changed files with 1 additions and 1 deletions
2
yjit.h
2
yjit.h
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue