stats.c revision e62f048960645b79363408fdead53fec2a063c52
1// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-stats %s 2>&1 | FileCheck %s
2
3void foo() {
4  int x;
5}
6// CHECK: ... Statistics Collected ...
7// CHECK:100 AnalysisConsumer - The % of reachable basic blocks.
8// CHECK:The # of times RemoveDeadBindings is called
9