Skip to content

Commit bf94c65

Browse files
authored
GH-99905: Fix output of misses in summarize_stats.py execution counts (GH-99906)
This was an indentation error introduced in 2844aa6
1 parent 131801d commit bf94c65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tools/scripts/summarize_stats.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,11 +317,11 @@ def calculate_execution_counts(opcode_stats, total):
317317
for (count, name, miss) in counts:
318318
cumulative += count
319319
if miss:
320-
miss = f"{100*miss/count:0.1f}%"
320+
miss = f"{100*miss/count:0.1f}%"
321321
else:
322322
miss = ""
323-
rows.append((name, count, f"{100*count/total:0.1f}%",
324-
f"{100*cumulative/total:0.1f}%", miss))
323+
rows.append((name, count, f"{100*count/total:0.1f}%",
324+
f"{100*cumulative/total:0.1f}%", miss))
325325
return rows
326326

327327
def emit_execution_counts(opcode_stats, total):

0 commit comments

Comments
 (0)