1 /* { dg-do run { target powerpc*-*-* ia64-*-* i?86-*-* x86_64-*-* } } */
2 /* { dg-options "-O2 -fselective-scheduling2" } */
8 void __attribute__ ((noinline
)) checkcd (struct S x
)
10 if (x
.i
[0] != 7.0 || x
.i
[1] != 8.0)
14 void __attribute__ ((noinline
)) testvacd (int n
, ...)
18 __builtin_va_start (ap
, n
);
19 for (i
= 0; i
< n
; i
++)
21 struct S t
= __builtin_va_arg (ap
, struct S
);
24 __builtin_va_end (ap
);
30 struct S x
= { { 7.0, 8.0 } };