brintos

brintos / llvm-project-archived public Read only

0
0
Text · 365 B · f0cc6f1 Raw
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