summaryrefslogtreecommitdiffstats
path: root/Python/specialize.c
diff options
context:
space:
mode:
authorBrandt Bucher <brandtbucher@microsoft.com>2025-02-07 19:41:17 (GMT)
committerGitHub <noreply@github.com>2025-02-07 19:41:17 (GMT)
commit5fa7e1b7fd57e8c6297e9eb79d79cede42e5ce0f (patch)
treee4e8acf32a770aefec4fd565ec6023cac94dc4ff /Python/specialize.c
parente4a00f70b176c3182aad3904f94c69a7fb733cd9 (diff)
downloadcpython-5fa7e1b7fd57e8c6297e9eb79d79cede42e5ce0f.zip
cpython-5fa7e1b7fd57e8c6297e9eb79d79cede42e5ce0f.tar.gz
cpython-5fa7e1b7fd57e8c6297e9eb79d79cede42e5ce0f.tar.bz2
GH-129715: Remove _DYNAMIC_EXIT (GH-129716)
Diffstat (limited to 'Python/specialize.c')
-rw-r--r--Python/specialize.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/specialize.c b/Python/specialize.c
index 8831cfa..4f84b29 100644
--- a/Python/specialize.c
+++ b/Python/specialize.c
@@ -260,6 +260,7 @@ print_optimization_stats(FILE *out, OptimizationStats *stats)
fprintf(out, "Optimization inner loop: %" PRIu64 "\n", stats->inner_loop);
fprintf(out, "Optimization recursive call: %" PRIu64 "\n", stats->recursive_call);
fprintf(out, "Optimization low confidence: %" PRIu64 "\n", stats->low_confidence);
+ fprintf(out, "Optimization unknown callee: %" PRIu64 "\n", stats->unknown_callee);
fprintf(out, "Executors invalidated: %" PRIu64 "\n", stats->executors_invalidated);
print_histogram(out, "Trace length", stats->trace_length_hist);