summaryrefslogtreecommitdiffstats
path: root/test/Analysis/inline.c
blob: acaf74ded996acb93bcd4bb7506c0d813d800b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// RUN: false
// XFAIL: *
int f1() {
  int y = 1;
  y++;
  return y;
}

void f2() {
  int x = 1;
  x = f1();
  if (x == 1) {
    int *p = 0;
    *p = 3; // no-warning
  }
  if (x == 2) {
    int *p = 0;
    *p = 3; // expected-warning{{Dereference of null pointer (loaded from variable 'p')}}
  }
}
OpenPOWER on IntegriCloud