diff options
author | Takashi Kokubun <[email protected]> | 2023-03-07 23:14:07 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2023-03-07 23:16:24 -0800 |
commit | e93e780f3d37705a26a9160c60cc92255c1ff60a (patch) | |
tree | fcaee4606e3ba755cb1c560f8e1ce4db0385d37d /builtin.h | |
parent | b67f07fa2c5b7fe9a08563bbc8084401b2ec68c4 (diff) |
Remove MJIT's builtin function compiler
Diffstat (limited to 'builtin.h')
-rw-r--r-- | builtin.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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); |