mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
GH-111213: Fix a few broken stats (GH-111216)
This commit is contained in:
parent
5c9d4497ab
commit
b0699aa544
2 changed files with 19 additions and 7 deletions
|
@ -134,7 +134,7 @@ print_spec_stats(FILE *out, OpcodeStats *stats)
|
|||
fprintf(out, "opcode[BINARY_SLICE].specializable : 1\n");
|
||||
fprintf(out, "opcode[STORE_SLICE].specializable : 1\n");
|
||||
for (int i = 0; i < 256; i++) {
|
||||
if (_PyOpcode_Caches[i]) {
|
||||
if (_PyOpcode_Caches[i] && i != JUMP_BACKWARD) {
|
||||
fprintf(out, "opcode[%s].specializable : 1\n", _PyOpcode_OpName[i]);
|
||||
}
|
||||
PRINT_STAT(i, specialization.success);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue