view gcc/testsuite/gcc.dg/pr65802.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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);
}