summaryrefslogtreecommitdiff
path: root/version.c
diff options
context:
space:
mode:
authorJose Narvaez <goyox86@gmail.com>2021-03-06 23:46:56 +0000
committerAlan Wu <XrXr@users.noreply.github.com>2021-10-20 18:19:31 -0400
commit4e2eb7695e9b45cb5d2ae757bdb5c2043d78be78 (patch)
tree71e02cd04b191b9ce66801b67736cf69d831bd0b /version.c
parent7f7e79d80221949f93c7ded7cbd8d26afd3dea1d (diff)
Yet Another Ruby JIT!
Renaming uJIT to YJIT. AKA s/ujit/yjit/g.
Diffstat (limited to 'version.c')
-rw-r--r--version.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/version.c b/version.c
index 7a5a2cb229..e8bf51d2dc 100644
--- a/version.c
+++ b/version.c
@@ -13,7 +13,7 @@
#include "version.h"
#include "vm_core.h"
#include "mjit.h"
-#include "ujit.h"
+#include "yjit.h"
#include <stdio.h>
#ifndef EXIT_SUCCESS
@@ -125,7 +125,7 @@ ruby_show_version(void)
PRINT(description);
}
- if (rb_ujit_enabled_p()) {
+ if (rb_yjit_enabled_p()) {
fputs("YJIT is enabled\n", stdout);
}
#ifdef RUBY_LAST_COMMIT_TITLE