view gcc/testsuite/gcc.dg/Wcxx-compat-11.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-Wc++-compat" } */

#include <stdarg.h>

enum E { A };

extern void f2 (int);
void
f1 (int n, ...)
{
  va_list ap;

  va_start (ap, n);
  f2 (va_arg (ap, int));
  f2 (va_arg (ap, _Bool));	/* { dg-warning "promoted" } */
  f2 (va_arg (ap, enum E));	/* { dg-warning "promoted" } */
}

/* Match extra informative notes.  */
/* { dg-message "note:" "expected" { target *-*-* } 0 } */