sizeofpointer.c revision a5728872c7702ddd09537c95bc3cbd20e1f2fb09
1// RUN: %clang_cc1 -analyze -warn-sizeof-pointer -verify %s
2
3struct s {
4};
5
6int f(struct s *p) {
7  return sizeof(p); // expected-warning{{The code calls sizeof() on a pointer type. This can produce an unexpected result.}}
8}
9