Fix off-by-one in comment [ci skip]

This commit is contained in:
Alan Wu 2023-07-18 17:52:04 -04:00 committed by GitHub
parent 45fd006185
commit 3211b70545
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -817,7 +817,7 @@ typedef struct rb_control_frame_struct {
const void *block_code; /* cfp[5] / block[2] */ /* iseq or ifunc or forwarded block handler */
#if VM_DEBUG_BP_CHECK
VALUE *bp_check; /* cfp[7] */
VALUE *bp_check; /* cfp[6] */
#endif
// Return address for YJIT code
void *jit_return;