Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
77db4a855239049488e09f28c6665fdb3b51ef90
/
.
/
lldb
/
test
/
expression_command
/
options
/
main.cpp
blob: ecd9a90f6626b727e801b181097c1bb7daa41b98 [
file
] [
log
] [
blame
]
extern
"C"
int
foo
(
void
);
static
int
static_value
=
0
;
int
bar
()
{
static_value
++;
return
static_value
;
}
int
main
(
int
argc
,
char
const
*
argv
[])
{
bar
();
// breakpoint_in_main
return
foo
();
}