freebsd-skq/test/Analysis/basicstore_wine_crash.c

12 lines
231 B
C
Raw Normal View History

2009-06-02 17:58:47 +00:00
// 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;
}