blob: cb5fac8d2919e0a254d2256ae766ad33e75fdc32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: clang-cc -checker-cfref -analyze -analyzer-store=basic %s
// Once xfail_regionstore_wine_crash.c passes, move this test case
// into misc-ps.m.
void foo() {
long x = 0;
char *y = (char *) &x;
if (!*y)
return;
}
|