The Nest
Explore
Sign in
nuudlman
llvm
clang
tools
scan-build-py
tests
functional
src
emit-two.c
0
Compiler projects using llvm
Code
Changes
Tags
Discussions
main
int
bad_guy
(
int
*
i
)
{
*
i
=
9
;
return
*
i
;
}
void
bad_guy_test
(
)
{
int
*
ptr
=
0
;
bad_guy
(
ptr
)
;
}