blob: 6d0a2c4d2c26b47a86431d437977c8ece994718c (
plain)
1
2
3
4
5
6
7
8
|
// RUN: %clang_cc1 -analyze -analyzer-checker=core.experimental.SizeofPtr -verify %s
struct s {
};
int f(struct s *p) {
return sizeof(p); // expected-warning{{The code calls sizeof() on a pointer type. This can produce an unexpected result.}}
}
|