From 3211b7054562a3435b34311b0811cdf1956443b6 Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Tue, 18 Jul 2023 17:52:04 -0400 Subject: [PATCH] Fix off-by-one in comment [ci skip] --- vm_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;