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