repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
PR target/83368
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
always_inline.c
blob
8603bc6e38aeec63cce7a57b0e4638eddd133477
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fgnu89-inline" } */
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
}