gh-96653: Remove duplicate CALL_STAT_INC(inlined_py_calls) in BINARY_SUBSCR_GETITEM (GH-96654)

This commit is contained in:
Itamar Ostricher 2022-09-08 01:22:32 -07:00 committed by GitHub
parent d5e07862ec
commit 4f523a7054
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1659,7 +1659,6 @@ handle_eval_breaker:
STAT_INC(BINARY_SUBSCR, hit);
Py_INCREF(getitem);
_PyInterpreterFrame *new_frame = _PyFrame_PushUnchecked(tstate, getitem);
CALL_STAT_INC(inlined_py_calls);
STACK_SHRINK(2);
new_frame->localsplus[0] = container;
new_frame->localsplus[1] = sub;