summaryrefslogtreecommitdiffstats
path: root/test/Analysis/xfail_regionstore_wine_crash.c
blob: 2628d0dacf6a9f5e0865c56a11e3987d8201911b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: clang-cc -checker-cfref -analyze -analyzer-store=region -verify %s
// XFAIL

// When this test passes we should put it in the misc-ps.m test file.
// This test fails now because RegionStoreManager::Retrieve() does correctly 
// retrieve the first byte of 'x' when retrieving '*y'.
void foo() {
  long x = 0;
  char *y = (char *) &x;
  if (!*y)
    return;
}
OpenPOWER on IntegriCloud