1 /* PR rtl-optimization/79574 */
2 /* { dg-do compile } */
3 /* { dg-options "-Os --param gcse-cost-distance-ratio=2147483647" } */
10 int rd (int *pppp
, int n
, ...)
19 va_arg (argp
, double);
20 p
= va_arg (argp
, int *);
21 i
= va_arg (argp
, int);
24 __builtin_printf ("%d\n", res
);
29 int mpx_test (int argc
, const char **argv
)
31 rd (buf1
, 2, 10.0d
, 10.0d
, buf
, 100, buf1
);