Files
clang-p2996/lldb/test/API/commands/watchpoints/watchpoint_count/main.c
Davide Italiano 64799fbebd [debugserver/ARM64] Make sure watchpoints hit are attributed correctly.
This didn't happen for arm64 if you have watches for variables
that are contigous in memory.

<rdar://problem/55135006>
2020-03-31 15:56:20 -07:00

14 lines
152 B
C

#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;
}