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
[AMDGPU] Add True16 register classes.
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
result_numbering
/
main.c
blob
0f5853c99fb1dc775cda06483339ed3e2b7681a6
1
#include <stdio.h>
2
3
int
4
call_me
(
int
input
)
5
{
6
return
input
;
7
}
8
9
int
10
main
()
11
{
12
int
value
=
call_me
(
0
);
// Set a breakpoint here
13
while
(
value
<
10
)
14
{
15
printf
(
"Add conditions to this breakpoint: %d.
\n
"
,
value
++);
16
}
17
return
0
;
18
}