This didn't happen for arm64 if you have watches for variables that are contigous in memory. <rdar://problem/55135006>
14 lines
152 B
C
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;
|
|
}
|