diff options
Diffstat (limited to 'test/Analysis/basicstore_wine_crash.c')
-rw-r--r-- | test/Analysis/basicstore_wine_crash.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/test/Analysis/basicstore_wine_crash.c b/test/Analysis/basicstore_wine_crash.c deleted file mode 100644 index cb5fac8..0000000 --- a/test/Analysis/basicstore_wine_crash.c +++ /dev/null @@ -1,11 +0,0 @@ -// 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; -} |