[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Analysis / analyzer-stats.c
blob7e2e9164ff35d49d0e770ab4717219a3b2b66f5c
1 // RUN: %clang_analyze_cc1 -analyzer-checker=core,deadcode.DeadStores,debug.Stats -verify -Wno-unreachable-code -analyzer-max-loop 4 %s
3 int foo(void);
5 int test(void) { // expected-warning-re{{test -> Total CFGBlocks: {{[0-9]+}} | Unreachable CFGBlocks: 0 | Exhausted Block: no | Empty WorkList: yes}}
6 int a = 1;
7 a = 34 / 12;
9 if (foo())
10 return a;
12 a /= 4;
13 return a;
17 int sink(void) // expected-warning-re{{sink -> Total CFGBlocks: {{[0-9]+}} | Unreachable CFGBlocks: 1 | Exhausted Block: yes | Empty WorkList: yes}}
19 for (int i = 0; i < 10; ++i) // expected-warning {{(sink): The analyzer generated a sink at this point}}
20 ++i;
22 return 0;
25 int emptyConditionLoop(void) // expected-warning-re{{emptyConditionLoop -> Total CFGBlocks: {{[0-9]+}} | Unreachable CFGBlocks: 0 | Exhausted Block: yes | Empty WorkList: yes}}
27 int num = 1;
28 for (;;)
29 num++;