blob: 1fa8b905dc0a07196f5b02f24baa21cad09c97ef [file] [log] [blame]
Argyrios Kyrtzidisc4d2c902011-02-28 19:49:42 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-inline-call -analyzer-store region -verify %s
Zhongxing Xu57d3b762010-03-04 09:04:52 +00002
Ted Kremenek1d26f482011-10-24 01:32:45 +00003// Test when entering f1(), we set the right AnalysisDeclContext to Environment.
Zhongxing Xu57d3b762010-03-04 09:04:52 +00004// Otherwise, block-level expr '1 && a' would not be block-level.
5int a;
6
7void f1() {
8 if (1 && a)
9 return;
10}
11
12void f2() {
13 f1();
14}