[clang][www] Remove ClangDataFormat.py from docs (#117943)
[llvm-project.git] / clang / test / Analysis / inlining / analysis-order.c
blobf0cc6f113f9b383e7ea993ad449dbd362a66ec0e
1 // RUN: %clang_analyze_cc1 -analyzer-checker=core.builtin.NoReturnFunctions -analyzer-display-progress %s 2>&1 | FileCheck %s
3 // Do not analyze test1() again because it was inlined
4 void test1(void);
6 void test2(void) {
7 test1();
10 void test1(void) {
13 // CHECK: analysis-order.c test2
14 // CHECK-NEXT: analysis-order.c test1
15 // CHECK-NEXT: analysis-order.c test2