repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git]
/
lldb
/
packages
/
Python
/
lldbsuite
/
test
/
lang
/
mixed
/
main.c
blob
f5c5d19f2c892d84f3608d3f581e2b431eb57694
1
int
foo
(
void
);
2
static int
static_value
=
0
;
3
4
int
5
bar
()
6
{
7
static_value
++;
8
return
static_value
;
9
}
10
11
int
main
(
int
argc
,
char const
*
argv
[])
12
{
13
bar
();
// breakpoint_in_main
14
return
foo
();
15
}