Skip to content

Commit 025612c

Browse files
committed
uop -> uops
1 parent 4123226 commit 025612c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/specialize.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ print_optimization_stats(FILE *out, OptimizationStats *stats)
272272
for (int i = 1; i <= MAX_UOP_ID; i++){
273273
for (int j = 1; j <= MAX_UOP_ID; j++) {
274274
if (stats->opcode[i].pair_count[j]) {
275-
fprintf(out, "uop[%s].pair_count[%s] : %" PRIu64 "\n",
275+
fprintf(out, "uops[%s].pair_count[%s] : %" PRIu64 "\n",
276276
_PyOpcode_uop_name[i], _PyOpcode_uop_name[j], stats->opcode[i].pair_count[j]);
277277
}
278278
}

0 commit comments

Comments
 (0)