hanchenye-llvm-project/clang/test/Analysis/inline3.c

16 lines
241 B
C

// RUN: false
// XFAIL: *
// Test when entering f1(), we set the right AnalysisContext to Environment.
// Otherwise, block-level expr '1 && a' would not be block-level.
int a;
void f1() {
if (1 && a)
return;
}
void f2() {
f1();
}