xref: /minix3/external/bsd/llvm/dist/clang/test/Analysis/sizeofpointer.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -analyze -analyzer-checker=alpha.core.SizeofPtr -verify %s
2 
3 struct s {
4 };
5 
f(struct s * p)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