aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr52693.c
blob: 93e0680ac7c858928854769d1e8b0fb109882b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* { dg-do run } */

struct pair
{
  int x;
  int y;
};

struct array
{
  struct pair elems[ 2 ];
  unsigned index;
};

extern void abort ();

void __attribute__ ((noinline,noclone))
test_results (int x1, int y1, int x2, int y2)
{
  if (x1 != x2 || y1 != y2)
    abort ();
}

int
main (void)
{
  struct array arr = {{{1,2}, {3,4}}, 1};
  struct pair last = arr.elems[arr.index];

  test_results ( last.x, last.y, arr.elems[1].x, arr.elems[1].y);

  return 0;
}