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_count
/
main.c
blob
fc9a370e41f3164e718e4c0463477a77d260aa7c
1
#include <stdint.h>
2
#include <stdio.h>
3
4
int
main
() {
5
uint8_t
x1
=
0
;
6
uint16_t
x2
=
0
;
7
8
printf
(
"patatino
\n
"
);
9
10
x1
+=
1
;
11
x2
+=
2
;
12
return
0
;
13
}