aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr45652.c
blob: 8f55f0c8cb121a4d614cd0f9377326644ab9886d (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
34
35
36
37
38
39
/* { dg-do run { target powerpc*-*-* ia64-*-* x86_64-*-* } } */
/* { dg-options "-O2 -fselective-scheduling2" } */

struct S {
  double i[2];
};

void __attribute__ ((noinline)) checkcd (struct S x)
{
  if (x.i[0] != 7.0 || x.i[1] != 8.0)
    __builtin_abort ();
}

void __attribute__ ((noinline)) testvacd (int n, ...)
{
  int i;
  __builtin_va_list ap;
  __builtin_va_start (ap, n);
  for (i = 0; i < n; i++)
    {
      struct S t = __builtin_va_arg (ap, struct S);
      checkcd (t);
    }
  __builtin_va_end (ap);
}

void
testitcd (void)
{
  struct S x = { { 7.0, 8.0 } };
  testvacd (2, x, x);
}

int
main ()
{
  testitcd ();
  return 0;
}