aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/debug/vta-3.c
blob: 7d014f1bc1e21663143cef76d0759f84fba8d297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile } */

int
foo (void)
{
  union { char e[8]; int i; } a, b;
  char *c, *d;
  unsigned int i;
  c = a.e;
  d = &b.e[sizeof (int) - 1];
  for (i = 0; i < sizeof (int); i++)
    {
      *d = *c++;
      --d;
    }
  return b.i;
}