diff options
-rw-r--r-- | test/Analysis/xfail_wine_crash.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/Analysis/xfail_wine_crash.c b/test/Analysis/xfail_wine_crash.c new file mode 100644 index 0000000000..55143f8805 --- /dev/null +++ b/test/Analysis/xfail_wine_crash.c @@ -0,0 +1,12 @@ +// RUN: clang-cc -checker-cfref -analyze -analyzer-store=region %s && +// RUN: clang-cc -checker-cfref -analyze -analyzer-store=basic %s +// XFAIL + +// When this test passes we should put it in the misc-ps.m test file. + +void foo() { + long x = 0; + char *y = (char *) &x; + if (!*y) + return; +} |