OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / always_inline.c
1 /* { dg-do compile } */
2 /* { dg-options "-Winline -O2" } */
3 #include <stdarg.h>
4 inline __attribute__ ((always_inline)) void
5 e(int t, ...) /* { dg-message "sorry\[^\n\]*variable argument" "" } */
6 {
7   va_list q;
8   va_start (q, t);
9 }