Sign in
rust
/
llvm-project
/
fe9269f804afce78827a11181e4b6a96007a0338
/
.
/
lldb
/
packages
/
Python
/
lldbsuite
/
test
/
lang
/
c
/
local_variables
/
main.c
blob: 2ab579a71a75796615e5983955f63dfea51e52b7 [
file
] [
log
] [
blame
]
#include
<stdio.h>
void
bar
(
unsigned
i
)
{
printf
(
"%d\n"
,
i
);
}
void
foo
(
unsigned
j
)
{
unsigned
i
=
j
;
bar
(
i
);
i
=
10
;
bar
(
i
);
// Set break point at this line.
}
int
main
(
int
argc
,
char
**
argv
)
{
foo
(
argc
);
}