summaryrefslogtreecommitdiff
path: root/test/Analysis/pointer-arithmetic.c
blob: 575dfffc01e86ef4f6453e3fdbc990496906c1cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// RUN: %clang_analyze_cc1 -analyzer-checker=core -verify %s

int test1() {
  int *p = (int *)sizeof(int);
  p -= 1;
  return *p; // expected-warning {{Dereference of null pointer}}
}

int test2() {
  int *p = (int *)sizeof(int);
  p -= 2;
  p += 1;
  return *p; // expected-warning {{Dereference of null pointer}}
}

int test3() {
  int *p = (int *)sizeof(int);
  p++;
  p--;
  p--;
  return *p; // expected-warning {{Dereference of null pointer}}
}

int test4() {
  // This is a special case where pointer arithmetic is not calculated to
  // preserve useful warnings on dereferences of null pointers.
  int *p = 0;
  p += 1;
  return *p; // expected-warning {{Dereference of null pointer}}
}