URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [Wcxx-compat-11.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* { 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 } */
Go to most recent revision | Compare with Previous | Blame | View Log