Skip to content

Commit 47b80b4

Browse files
committed
Address code review
1 parent 6ef74ac commit 47b80b4

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Python/optimizer_bytecodes.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,10 @@ dummy_func(void) {
349349
GETLOCAL(this_instr->operand0) = res;
350350
}
351351

352-
op(_BINARY_SUBSCR_INIT_CALL, (container, sub -- new_frame: _Py_UOpsAbstractFrame *)) {
352+
op(_BINARY_SUBSCR_INIT_CALL, (container, sub, getitem -- new_frame: _Py_UOpsAbstractFrame *)) {
353353
(void)container;
354354
(void)sub;
355+
(void)getitem;
355356
new_frame = NULL;
356357
ctx->done = true;
357358
}

Python/optimizer_cases.c.h

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)