repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
expr
/
stdarg2.C
blob
cf2eabcb1612f1707720362ab89288ca59463172
1
// PR target/26141
2
3
#include <stdarg.h>
4
5
struct S
6
{
7
double a;
8
};
9
10
void
11
foo (int z, ...)
12
{
13
struct S arg;
14
va_list ap;
15
arg = va_arg (ap, struct S);
16
}
17
18
19
struct T
20
{
21
__complex__ float a;
22
};
23
24
void
25
bar (int z, ...)
26
{
27
struct T arg;
28
va_list ap;
29
arg = va_arg (ap, struct T);
30
}