Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr73434.c
blob624e0c6ccfb4c31bd3379e6e58463b64d6261be0
1 /* { dg-do run } */
3 typedef struct { unsigned char x; } A;
4 typedef struct { unsigned char x; } B;
6 int idx = 0;
8 A objs[1] = {{0}};
10 int main()
12 B *b = (B*)&objs[idx];
13 b->x++;
14 if (b->x)
15 b->x = 0;
16 if (b->x)
17 __builtin_abort ();
18 return 0;