blob: 0721ca81bf654803a020247fe3c91df2b569ec04 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O0 -fexceptions" } */
/* { dg-require-effective-target exceptions } */
#include <stdarg.h>
struct S
{
int (*m_fn1) (void);
} a;
void
fn1 (int d, ...)
{
va_list c;
va_start (c, d);
{
int *d = va_arg (c, int *);
int **e = &d;
a.m_fn1 ();
}
a.m_fn1 ();
va_end (c);
}