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