Sign in
llvm
/
llvm-project
/
a78861fc55d18046989ff4d624a037e9181da170
/
.
/
lldb
/
test
/
API
/
commands
/
watchpoints
/
watchpoint_count
/
main.c
blob: fc9a370e41f3164e718e4c0463477a77d260aa7c [
file
]
#include
<stdint.h>
#include
<stdio.h>
int
main
()
{
uint8_t
x1
=
0
;
uint16_t
x2
=
0
;
printf
(
"patatino\n"
);
x1
+=
1
;
x2
+=
2
;
return
0
;
}