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
/
commands
/
target
/
stop-hooks
/
main.c
blob
d08ad14776b5adc373d275845484097067982fde
1
#include <stdio.h>
2
3
static int
g_var
=
0
;
4
5
int
step_out_of_me
()
6
{
7
return
g_var
;
// Set a breakpoint here and step out.
8
}
9
10
int
11
main
()
12
{
13
return
step_out_of_me
();
14
}