Add failing test case.

llvm-svn: 70791
This commit is contained in:
Ted Kremenek 2009-05-03 19:09:37 +00:00
parent 680ae74885
commit 3f4e62f397
1 changed files with 12 additions and 0 deletions

View File

@ -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;
}