Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
always_inline.c
blob: 8603bc6e38aeec63cce7a57b0e4638eddd133477 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2 -fgnu89-inline" } */
#include
<stdarg.h>
inline
__attribute__
((
always_inline
))
void
e
(
int
t
,
...)
/* { dg-error "variable argument lists" } */
{
va_list q
;
va_start
(
q
,
t
);
}