Clang Project
clang_source_code
/
tools
/
scan-build-py
/
tests
/
functional
/
src
/
emit-two.c
1
2
int
bad_guy
(
int
*
i
)
3
{
4
*
i
=
9
;
5
return
*
i
;
6
}
7
8
void
bad_guy_test
()
9
{
10
int
*
ptr
=
0
;
11
12
bad_guy
(
ptr
);
13
}
14