Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
b5fbb8931466eeab70a30a27a8d5f385472305a1
/
.
/
test
/
Analysis
/
sizeofpointer.c
blob: 6d0a2c4d2c26b47a86431d437977c8ece994718c [
file
] [
log
] [
blame
]
// 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.}}
}