gh-134584: Eliminate redundant refcounting from _BINARY_OP_SUBSCR_LIST_INT (GH-142926)

This commit is contained in:
LloydZ 2025-12-19 02:25:36 +08:00 committed by GitHub
parent f54d44d333
commit 33d94abafd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 74 additions and 38 deletions

View file

@ -1417,6 +1417,12 @@ dummy_func(void) {
}
}
op(_BINARY_OP_SUBSCR_LIST_INT, (list_st, sub_st -- res, ls, ss)) {
res = sym_new_unknown(ctx);
ls = list_st;
ss = sub_st;
}
// END BYTECODES //