We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 553753c commit 0ecb689Copy full SHA for 0ecb689
vm_callinfo.h
@@ -289,7 +289,7 @@ struct rb_callcache {
289
290
union {
291
struct {
292
- uint64_t value; // Shape ID in upper bits, index in lower bits
+ uint64_t value; // Shape ID in former half, index in latter half
293
} attr;
294
const enum method_missing_reason method_missing_reason; /* used by method_missing */
295
VALUE v;
vm_core.h
@@ -288,7 +288,7 @@ struct iseq_inline_constant_cache {
288
};
struct iseq_inline_iv_cache_entry {
- uint64_t value; // attr_index in lower bits, dest_shape_id in upper bits
+ uint64_t value; // dest_shape_id in former half, attr_index in latter half
ID iv_set_name;
0 commit comments