Skip to content

Commit

Permalink
Update vm_core.h
Browse files Browse the repository at this point in the history
Co-authored-by: Tomás Coêlho <36938811+tomascco@users.noreply.github.com>
  • Loading branch information
tenderlove and tomascco committed Jun 23, 2022
1 parent e23540e commit 1ccdb1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compile.c
Expand Up @@ -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));
Expand Down
2 changes: 1 addition & 1 deletion vm_core.h
Expand Up @@ -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;
Expand Down

0 comments on commit 1ccdb1a

Please sign in to comment.