summaryrefslogtreecommitdiffstats
path: root/test/Analysis/sizeofpointer.c
blob: e40c71857242e65cd7679cc4a7eb490e22e254a3 (plain)
1
2
3
4
5
6
7
8
// RUN: clang-cc -analyze -warn-sizeof-pointer -verify %s

struct s {
};

int f(struct s *p) {
  return sizeof(p); // expected-warning{{The code calls sizeof() on a pointer type. This can produce an unexpected result.}}
}
OpenPOWER on IntegriCloud