aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Analysis/inline3.c
blob: 930a65ffec1e6e9cf01c6db7dfc156462963ed16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// RUN: %clang_analyze_cc1 -analyzer-checker=core -verify %s
// expected-no-diagnostics

// Test when entering f1(), we set the right AnalysisDeclContext to Environment.
// Otherwise, block-level expr '1 && a' would not be block-level.
int a;

void f1(void) {
  if (1 && a)
    return;
}

void f2(void) {
  f1();
}