mirror of
https://github.com/python/cpython.git
synced 2024-11-27 03:45:08 +08:00
GH-123197: Increment correct stat for CALL_KW (GH-123200)
This commit is contained in:
parent
1eba8bae92
commit
7b26c4d1e3
@ -4194,7 +4194,7 @@ dummy_func(
|
||||
_Py_Specialize_CallKw(callable, next_instr, oparg + !PyStackRef_IsNull(self_or_null));
|
||||
DISPATCH_SAME_OPARG();
|
||||
}
|
||||
STAT_INC(CALL, deferred);
|
||||
STAT_INC(CALL_KW, deferred);
|
||||
ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
|
||||
#endif /* ENABLE_SPECIALIZATION */
|
||||
}
|
||||
|
2
Python/generated_cases.c.h
generated
2
Python/generated_cases.c.h
generated
@ -1761,7 +1761,7 @@
|
||||
_Py_Specialize_CallKw(callable, next_instr, oparg + !PyStackRef_IsNull(self_or_null));
|
||||
DISPATCH_SAME_OPARG();
|
||||
}
|
||||
STAT_INC(CALL, deferred);
|
||||
STAT_INC(CALL_KW, deferred);
|
||||
ADVANCE_ADAPTIVE_COUNTER(this_instr[1].counter);
|
||||
#endif /* ENABLE_SPECIALIZATION */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user