- env-include-paths.c is XFAIL as it exposed a bug. Add test/Coverage. - For tests which achieve code coverage but don't validate anything. llvm-svn: 57070
16 lines
170 B
C
16 lines
170 B
C
// RUN: rm -rf %t &&
|
|
// RUN: clang --html-diags=%t -checker-simple %s
|
|
|
|
void f0(int x) {
|
|
int *p = &x;
|
|
|
|
if (x > 10) {
|
|
if (x == 22)
|
|
p = 0;
|
|
}
|
|
|
|
*p = 10;
|
|
}
|
|
|
|
|