1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Bindgen immediate types with builtin

This commit is contained in:
Takashi Kokubun 2022-09-20 23:23:50 +09:00
parent 280ff1707e
commit 4c6e1556b1
Notes: git 2022-09-23 06:45:06 +09:00
4 changed files with 99 additions and 61 deletions

View file

@ -164,6 +164,9 @@ has_cache_for_send(rb_execution_context_t *ec, VALUE self, VALUE cc_addr, VALUE
extern bool rb_splat_or_kwargs_p(const struct rb_callinfo *restrict ci);
#define SIZEOF(type) RB_SIZE2NUM(sizeof(type))
#define SIGNED_TYPE_P(type) RBOOL((type)(-1) < (type)(0))
#include "mjit_c.rbinc"
#include "mjit_compiler.rbinc"