mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
WIP
This commit is contained in:
parent
c5f3126428
commit
e47dd8bb88
1 changed files with 5 additions and 1 deletions
|
@ -37,7 +37,11 @@ typedef struct yjit_val_type
|
|||
// Value is definitely an immediate
|
||||
uint8_t is_imm : 1;
|
||||
|
||||
// NOTE: we could switch this to an enum,
|
||||
// Not Qfalse or Qnil
|
||||
// Is this useful?
|
||||
//uint8_t is_truthy: 1;
|
||||
|
||||
// NOTE: we could switch to using an enum to track multiple types
|
||||
// but then we also need a value for "unknown type"
|
||||
uint8_t is_fixnum : 1;
|
||||
//uint8_t is_array : 1; // for opt_aref
|
||||
|
|
Loading…
Reference in a new issue