xref: /llvm-project/lldb/test/API/macosx/tbi-honored/main.c (revision 52557bce73f64df5da13d42dd97b57fbd4ab1b12)
1 #include <stdint.h>
2 #include <stdio.h>
3 union ptrbytes {
4   int *p;
5   uint8_t bytes[8];
6 };
main()7 int main() {
8   int c = 15;
9   union ptrbytes pb;
10   pb.p = &c;
11   pb.bytes[7] = 0xfe;
12   printf("%d\n", *pb.p); // break here
13 }
14