1#include <stdint.h>
2#include <stdio.h>
3
4int main() {
5 uint8_t x1 = 0;
6 uint16_t x2 = 0;
7
8 printf(format: "patatino\n");
9
10 x1 += 1;
11 x2 += 2;
12 return 0;
13}
14

source code of lldb/test/API/commands/watchpoints/watchpoint_count/main.c