diff options
Diffstat (limited to 'test/Analysis/sizeofpointer.c')
-rw-r--r-- | test/Analysis/sizeofpointer.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Analysis/sizeofpointer.c b/test/Analysis/sizeofpointer.c new file mode 100644 index 0000000..e40c718 --- /dev/null +++ b/test/Analysis/sizeofpointer.c @@ -0,0 +1,8 @@ +// RUN: clang-cc -analyze -warn-sizeof-pointer -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.}} +} |