summaryrefslogtreecommitdiffstats
path: root/test/Analysis/misc-ps-flat-store.c
blob: 8cbcecf51ff0b4a0ec18bada5f687158d4def263 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store=flat -verify %s

void f1() {
  int x;
  int *p;
  x = 1;
  p = 0;
  if (x != 1)
    *p = 1; // no-warning
}
OpenPOWER on IntegriCloud