OSDN Git Service

PR tree-optimization/52019
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / always_inline.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 #include <stdarg.h>
4 inline __attribute__ ((always_inline)) void
5 e(int t, ...) /* { dg-error "variable argument lists" } */
6 {
7   va_list q;
8   va_start (q, t);
9 }