view gcc/testsuite/gcc.dg/20050105-2.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

/* PR tree-optimization/18828 */
/* { dg-do compile } */
/* { dg-options "-O2" } */

#include <stdarg.h>

extern void abort (void);

void foo (int x, ...)
{
  va_list ap;
  if (x != 21)
    abort ();
  va_start (ap, x);
  va_end (ap);
}

void bar (int x, ...)
{
  va_list ap;
  x++;
  va_start (ap, x);
  va_end (ap);
}

void baz (int x, ...)
{
  va_list ap;
  x = 0;
  va_start (ap, x);
  va_end (ap);
}