Skip to content

Commit 3d0df4c

Browse files
committed
Mark some stackrefs as unused
1 parent 0ede9f3 commit 3d0df4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/optimizer_bytecodes.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -890,7 +890,7 @@ dummy_func(void) {
890890
}
891891
}
892892

893-
op(_CALL_ISINSTANCE, (callable, null, instance, cls -- res)) {
893+
op(_CALL_ISINSTANCE, (unused, unused, instance, cls -- res)) {
894894
// the result is always a bool, but sometimes we can
895895
// narrow it down to True or False
896896
res = sym_new_type(ctx, &PyBool_Type);

0 commit comments

Comments
 (0)