16 lines · c
1// RUN: %clang_analyze_cc1 -analyzer-checker=core.builtin.NoReturnFunctions -analyzer-display-progress %s 2>&1 | FileCheck %s2 3// Do not analyze test1() again because it was inlined4void test1(void);5 6void test2(void) {7 test1();8}9 10void test1(void) {11}12 13// CHECK: analysis-order.c test214// CHECK-NEXT: analysis-order.c test115// CHECK-NEXT: analysis-order.c test216