blob: 82fda04114d23eb0cb34bcd039d3f5955c4df2e0 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -analyze -warn-sizeof-pointer -verify %s
Zhongxing Xuc24e9f32009-11-09 02:28:12 +00002
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}