Sign in
llvm
/
llvm-project
/
fd3907ccb583df99e9c19d2fe84e4e7c52d75de9
/
.
/
lldb
/
test
/
Shell
/
ScriptInterpreter
/
Python
/
Crashlog
/
Inputs
/
test.c
blob: 3f0819b4b6c1848b5cba88b7cdaf62c871f188e3 [
file
]
void
foo
()
{
int
*
i
=
0
;
*
i
=
1
;
}
void
bar
()
{
foo
();
}
int
main
(
int
argc
,
char
**
argv
)
{
bar
();
}