]> git.proxmox.com Git - rustc.git/blame - src/llvm/tools/clang/test/Analysis/sizeofpointer.c
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / Analysis / sizeofpointer.c
CommitLineData
223e47cc
LB
1// RUN: %clang_cc1 -analyze -analyzer-checker=alpha.core.SizeofPtr -verify %s
2
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}