Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
c2be04eaec94e20fc825fb98b713112d9d82562f
/
.
/
test
/
Analysis
/
func.c
blob: b6cebde81091ad04fc4457579565b1908d69b737 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -analyze -analyzer-checker=core,experimental.core -analyzer-store=region -verify %s
void
f
(
void
)
{
void
(*
p
)(
void
);
p
=
f
;
p
=
&
f
;
p
();
(*
p
)();
}
void
g
(
void
(*
fp
)(
void
));
void
f2
()
{
g
(
f
);
}