summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2023-03-06 22:02:03 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2023-03-06 22:29:35 -0800
commit7fb36a0054436369aa2868490e2d102d8e75929c (patch)
treede7fb2c68791e34d130b2d7bf811a7609246e059 /internal
parentf68580890faef54a8000e3d9b79341dbd17c115e (diff)
downloadruby-7fb36a0054436369aa2868490e2d102d8e75929c.tar.gz
Remove obsoleted MJIT_STATIC macro
Diffstat (limited to 'internal')
-rw-r--r--internal/vm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/vm.h b/internal/vm.h
index cfb8923572..11595b21d8 100644
--- a/internal/vm.h
+++ b/internal/vm.h
@@ -50,12 +50,12 @@ PUREFUNC(VALUE rb_vm_top_self(void));
const void **rb_vm_get_insns_address_table(void);
VALUE rb_source_location(int *pline);
const char *rb_source_location_cstr(int *pline);
-MJIT_STATIC void rb_vm_pop_cfunc_frame(void);
+void rb_vm_pop_cfunc_frame(void);
int rb_vm_add_root_module(VALUE module);
void rb_vm_check_redefinition_by_prepend(VALUE klass);
int rb_vm_check_optimizable_mid(VALUE mid);
VALUE rb_yield_refine_block(VALUE refinement, VALUE refinements);
-MJIT_STATIC VALUE ruby_vm_special_exception_copy(VALUE);
+VALUE ruby_vm_special_exception_copy(VALUE);
PUREFUNC(st_table *rb_vm_fstring_table(void));
VALUE vm_exec(struct rb_execution_context_struct *, bool); /* used in JIT-ed code */