From e93e780f3d37705a26a9160c60cc92255c1ff60a Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Tue, 7 Mar 2023 23:14:07 -0800 Subject: Remove MJIT's builtin function compiler --- builtin.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'builtin.h') diff --git a/builtin.h b/builtin.h index 38ad5a1629..85fd1a009a 100644 --- a/builtin.h +++ b/builtin.h @@ -11,17 +11,13 @@ struct rb_builtin_function { // for load const int index; const char * const name; - - // for jit - void (*compiler)(VALUE, long, unsigned, bool); }; -#define RB_BUILTIN_FUNCTION(_i, _name, _fname, _arity, _compiler) {\ +#define RB_BUILTIN_FUNCTION(_i, _name, _fname, _arity) {\ .name = _i < 0 ? NULL : #_name, \ .func_ptr = (void *)_fname, \ .argc = _arity, \ .index = _i, \ - .compiler = _compiler, \ } void rb_load_with_builtin_functions(const char *feature_name, const struct rb_builtin_function *table); -- cgit v1.2.1