summaryrefslogtreecommitdiff
path: root/test/Analysis/null-deref-path-notes.c
blob: a1477a6226a7f5c5667236a0c7cbed774646f7ac (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_analyze_cc1 -w -x c -analyzer-checker=core -analyzer-output=text -verify %s

// Avoid the crash when finding the expression for tracking the origins
// of the null pointer for path notes.
void pr34373() {
  int *a = 0; // expected-note{{'a' initialized to a null pointer value}}
  (a + 0)[0]; // expected-warning{{Array access results in a null pointer dereference}}
              // expected-note@-1{{Array access results in a null pointer dereference}}
}