Suppress unused-function warnings

This commit is contained in:
Nobuyoshi Nakada 2021-11-05 10:32:55 +09:00
parent f62f020f56
commit bfc0a71a82
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6
1 changed files with 4 additions and 0 deletions

View File

@ -1249,4 +1249,8 @@ rb_yjit_init(struct rb_yjit_options *options)
struct yjit_root_struct *root;
VALUE yjit_root = TypedData_Make_Struct(0, struct yjit_root_struct, &yjit_root_type, root);
rb_gc_register_mark_object(yjit_root);
(void)yjit_get_cb;
(void)yjit_get_ocb;
(void)yjit_get_code_page;
}