File tree 1 file changed +4
-0
lines changed 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -215,6 +215,7 @@ print_gc_stats(FILE *out, GCStats *stats)
215
215
}
216
216
}
217
217
218
+ #ifdef _Py_TIER2
218
219
static void
219
220
print_histogram (FILE * out , const char * name , uint64_t hist [_Py_UOP_HIST_SIZE ])
220
221
{
@@ -289,6 +290,7 @@ print_optimization_stats(FILE *out, OptimizationStats *stats)
289
290
}
290
291
}
291
292
}
293
+ #endif
292
294
293
295
static void
294
296
print_rare_event_stats (FILE * out , RareEventStats * stats )
@@ -309,7 +311,9 @@ print_stats(FILE *out, PyStats *stats)
309
311
print_call_stats (out , & stats -> call_stats );
310
312
print_object_stats (out , & stats -> object_stats );
311
313
print_gc_stats (out , stats -> gc_stats );
314
+ #ifdef _Py_TIER2
312
315
print_optimization_stats (out , & stats -> optimization_stats );
316
+ #endif
313
317
print_rare_event_stats (out , & stats -> rare_event_stats );
314
318
}
315
319
You can’t perform that action at this time.
0 commit comments