1 // RUN: clang-cc -analyze -warn-sizeof-pointer -verify %s 2 3 struct s { 4 }; 5 6 int 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