diff options
author | Jose Narvaez <[email protected]> | 2021-03-06 23:46:56 +0000 |
---|---|---|
committer | Alan Wu <[email protected]> | 2021-10-20 18:19:31 -0400 |
commit | 4e2eb7695e9b45cb5d2ae757bdb5c2043d78be78 (patch) | |
tree | 71e02cd04b191b9ce66801b67736cf69d831bd0b /version.c | |
parent | 7f7e79d80221949f93c7ded7cbd8d26afd3dea1d (diff) |
Yet Another Ruby JIT!
Renaming uJIT to YJIT. AKA s/ujit/yjit/g.
Diffstat (limited to 'version.c')
-rw-r--r-- | version.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |