mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
GH-103082: Code cleanup in instrumentation code (#103474)
This commit is contained in:
parent
e1f14643dc
commit
738c226786
4 changed files with 42 additions and 39 deletions
|
@ -148,7 +148,7 @@ print_spec_stats(FILE *out, OpcodeStats *stats)
|
|||
PRIu64 "\n", i, j, val);
|
||||
}
|
||||
}
|
||||
for(int j = 0; j < 256; j++) {
|
||||
for (int j = 0; j < 256; j++) {
|
||||
if (stats[i].pair_count[j]) {
|
||||
fprintf(out, "opcode[%d].pair_count[%d] : %" PRIu64 "\n",
|
||||
i, j, stats[i].pair_count[j]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue