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
/
watchpoints
/
watchpoint_disable
/
main.c
blob
dcbc766c59497a3544fcde798124588b80c4a9dc
1
#include <stdio.h>
2
3
int
global_var
=
10
;
4
5
int
6
main
()
7
{
8
printf
(
"Set a breakpoint here: %d.
\n
"
,
global_var
);
9
global_var
=
20
;
10
printf
(
"We should have stopped on the previous line: %d.
\n
"
,
global_var
);
11
global_var
=
30
;
12
return
0
;
13
}