This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / always_inline.c
blob2177f642f6063d6c3db52a7359fe4789f34ac1f3
1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O2" } */
3 #include <stdarg.h>
4 inline __attribute__ ((always_inline)) void
5 e(int t, ...)
6 { /* { dg-error "variable argument" "" } */
7 va_list q;
8 va_start (q, t);