summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Hawthorn <john@hawthorn.email>2026-02-11 13:30:26 -0800
committerJohn Hawthorn <john@hawthorn.email>2026-02-11 14:01:30 -0800
commit9aa30b512f12ac3e298f7b971cdbd0e2cae8fc68 (patch)
tree3538d54c2a7cf24709c622c6b8368f90a4f7c514
parentb746efc1fb46074ae659b4af0f9114aae9540e41 (diff)
Revert "Fix check in cc_is_active"
This reverts commit 9d8af87528be09bd4f846592e4922228288e3a10.
-rw-r--r--iseq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/iseq.c b/iseq.c
index 5f6de287ad..c418e17869 100644
--- a/iseq.c
+++ b/iseq.c
@@ -343,7 +343,7 @@ static bool
cc_is_active(const struct rb_callcache *cc, bool reference_updating)
{
if (cc) {
- if (cc == rb_vm_empty_cc() || cc == rb_vm_empty_cc_for_super()) {
+ if (cc == rb_vm_empty_cc() || rb_vm_empty_cc_for_super()) {
return false;
}