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
/
multi_watchpoint_slots
/
main.c
blob
25f52dfe7a10ca691a4ec57941c82e05e23d53b5
1
#include <stdio.h>
2
#include <stdint.h>
3
4
uint64_t
pad0
=
0
;
5
uint8_t
byteArray
[
4
] = {
0
};
6
uint64_t
pad1
=
0
;
7
8
int
main
(
int
argc
,
char
**
argv
) {
9
10
int
i
;
11
12
for
(
i
=
0
;
i
<
4
;
i
++)
13
{
14
printf
(
"About to write byteArray[%d] ...
\n
"
,
i
);
// About to write byteArray
15
pad0
++;
16
byteArray
[
i
] =
7
;
17
pad1
++;
18
}
19
20
return
0
;
21
}