Argyrios Kyrtzidis | 7dd445e | 2011-02-17 21:39:33 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -analyze -analyzer-checker=core.experimental.SizeofPtr -verify %s |
Zhongxing Xu | c24e9f3 | 2009-11-09 02:28:12 +0000 | [diff] [blame] | 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 | } |