Skip to content

Commit 5549410

Browse files
committed
Delete trailing whitespace
1 parent b84f496 commit 5549410

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Python/specialize.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ print_optimization_stats(FILE *out, OptimizationStats *stats)
218218
fprintf(out, "Optimization traces created: %" PRIu64 "\n", stats->traces_created);
219219
fprintf(out, "Optimization traces executed: %" PRIu64 "\n", stats->traces_executed);
220220
fprintf(out, "Optimization uops executed: %" PRIu64 "\n", stats->uops_executed);
221-
221+
222222
char** names;
223223
for (int i = 0; i < 512; i++) {
224224
if (i < 256) {

Tools/scripts/summarize_stats.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ def calculate_optimization_stats(stats):
624624
return [
625625
("Optimization attempts", attempts, ""),
626626
(
627-
"Traces created", created,
627+
"Traces created", created,
628628
format_ratio(created, attempts)
629629
),
630630
("Traces executed", executed, ""),
@@ -661,7 +661,7 @@ def emit_optimization_stats(stats):
661661
with Section("Uop stats", level=3):
662662
rows = calculate_uop_execution_counts(uop_stats)
663663
emit_table(
664-
("Uop", "Count:", "Self:", "Cumulative:"),
664+
("Uop", "Count:", "Self:", "Cumulative:"),
665665
rows
666666
)
667667

0 commit comments

Comments
 (0)