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

Update vm_core.h

Co-authored-by: Tomás Coêlho <36938811+tomascco@users.noreply.github.com>
This commit is contained in:
Aaron Patterson 2022-06-22 16:27:58 -07:00
parent e23540e566
commit 1ccdb1a251
Notes: git 2022-06-24 06:02:07 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -2333,7 +2333,7 @@ iseq_set_sequence(rb_iseq_t *iseq, LINK_ANCHOR *const anchor)
// Calculate the bitmask buffer size.
// Round the generated_iseq size up to the nearest multiple
// of the number if bits in an unsigned long.
// of the number of bits in an unsigned long.
// Allocate enough room for the bitmask list
iseq_bits_t * mark_offset_bits = ZALLOC_N(iseq_bits_t, ISEQ_MBITS_BUFLEN(code_index));

View file

@ -460,7 +460,7 @@ struct rb_iseq_constant_body {
} variable;
unsigned int local_table_size;
unsigned int ic_size; // Number if IC caches
unsigned int ic_size; // Number of IC caches
unsigned int ise_size; // Number of ISE caches
unsigned int ivc_size; // Number of IVC and ICVARC caches
unsigned int ci_size;