URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [expr/] [stdarg1.C] - Rev 694
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/23840
#include <stdarg.h>
struct S
{
int f(int);
};
void f(int i, ...)
{
va_list ap;
va_start (ap, i);
va_arg (ap, S).f(0);
}
Go to most recent revision | Compare with Previous | Blame | View Log