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