1 /* This testcase ICEd on x86-64 because LABEL_REF + small const was not
2 considered as local_symbolic_operand. */
3 /* { dg-do compile } */
4 /* { dg-options "-O2 -fpic" } */
6 typedef __builtin_va_list
va_list;
9 foo (void *a
, float b
, const char *c
, va_list d
, void *e
)
15 bar (void *a
, float b
, const char *c
, ...)
20 __builtin_stdarg_start (args
, c
);
21 d
= foo (a
, b
, c
, args
, a
);
22 __builtin_va_end (args
);