xref: /aosp_15_r20/external/clang/test/Analysis/stats.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1*67e74705SXin Li // REQUIRES: asserts
2*67e74705SXin Li // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-stats %s 2>&1 | FileCheck %s
3*67e74705SXin Li 
foo()4*67e74705SXin Li void foo() {
5*67e74705SXin Li   int x;
6*67e74705SXin Li }
7*67e74705SXin Li // CHECK: ... Statistics Collected ...
8*67e74705SXin Li // CHECK:100 AnalysisConsumer - The % of reachable basic blocks.
9*67e74705SXin Li // CHECK:The # of times RemoveDeadBindings is called
10