summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr73434.c
blob: 624e0c6ccfb4c31bd3379e6e58463b64d6261be0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* { dg-do run } */

typedef struct { unsigned char x; } A;
typedef struct { unsigned char x; } B;

int idx = 0;

A objs[1] = {{0}};

int main()
{
  B *b = (B*)&objs[idx];
  b->x++;
  if (b->x)
    b->x = 0;
  if (b->x)
    __builtin_abort ();
  return 0;
}