summaryrefslogtreecommitdiff
path: root/vm_core.h
diff options
context:
space:
mode:
authorAlan Wu <XrXr@users.noreply.github.com>2023-07-18 17:52:04 -0400
committerGitHub <noreply@github.com>2023-07-18 17:52:04 -0400
commit3211b7054562a3435b34311b0811cdf1956443b6 (patch)
tree8230e1369d7348ac4f5671de7275030d13134c1d /vm_core.h
parent45fd006185fe2404c058cc01f86791071d48e504 (diff)
Fix off-by-one in comment [ci skip]
Diffstat (limited to 'vm_core.h')
-rw-r--r--vm_core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm_core.h b/vm_core.h
index 29ce46e1c3..4b321d123e 100644
--- a/vm_core.h
+++ b/vm_core.h
@@ -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;