summaryrefslogtreecommitdiff
path: root/yjit.h
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2021-12-27 19:57:04 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2021-12-27 19:57:30 -0800
commit91b7be7708797d8d3057fb6f2223645b4b85be71 (patch)
tree56254eb37e8727bec5ce660e7a62ef2d7cb69c6a /yjit.h
parentf445eccfb423c1ef9b982d955b87f28f6414e5bd (diff)
downloadruby-91b7be7708797d8d3057fb6f2223645b4b85be71.tar.gz
Do not support non-x86_64 platforms
This was probably not intended in 85a426dc8678f04a78ffd799943b690ce2984c49.
Diffstat (limited to 'yjit.h')
-rw-r--r--yjit.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/yjit.h b/yjit.h
index 53e8b531a9..c500fb1a69 100644
--- a/yjit.h
+++ b/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