Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Analysis / objc-method-coverage.m
blob2d88f9ab146e3c4df707b56a0b3e9f903ce7c23b
1 // REQUIRES: asserts
2 // RUN: %clang_analyze_cc1 -analyzer-checker=core -analyzer-stats -fblocks %s 2>&1 | FileCheck %s
3 @interface I
4 int f(void) {
5   return 0;
7 @end
9 @implementation I
10 + (void *)ff{
11   return (void*)0;  
13 @end
15 // CHECK: ... Statistics Collected ...
16 // CHECK: 2 AnalysisConsumer - The # of functions and blocks analyzed (as top level with inlining turned on).
17 // CHECK: 100 AnalysisConsumer - The % of reachable basic blocks.