URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [other/] [stdarg2.C] - Rev 316
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/11929
// Bug: We were complaining about the call to va_start because o is of
// non-POD type.
struct s {
s(int);
};
void test(s o, ...) {
__builtin_va_list varg;
__builtin_va_start(varg, o);
}
Go to most recent revision | Compare with Previous | Blame | View Log