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
/
other
/
stdarg2.C
blob
99e904013f15725cdd4c12c4a87f767281949e53
1
// PR c++/11929
2
// Bug: We were complaining about the call to va_start because o is of
3
// non-POD type.
4
5
struct s {
6
s(int);
7
};
8
9
void test(s o, ...) {
10
__builtin_va_list varg;
11
__builtin_va_start(varg, o);
12
}