mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Do not support non-x86_64 platforms
This was probably not intended in 85a426dc86
.
This commit is contained in:
parent
f445eccfb4
commit
91b7be7708
1 changed files with 2 additions and 2 deletions
4
yjit.h
4
yjit.h
|
@ -15,8 +15,8 @@
|
|||
# define YJIT_STATS RUBY_DEBUG
|
||||
#endif
|
||||
|
||||
// We generate x86 assembly and rely on mmap(2).
|
||||
#if defined(__x86_64__) || defined(_WIN64)
|
||||
// We generate x86 assembly
|
||||
#if defined(__x86_64__)
|
||||
# define YJIT_SUPPORTED_P 1
|
||||
#else
|
||||
# define YJIT_SUPPORTED_P 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue