URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [var_copy-1.C] - Rev 774
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options "-std=c++0x" }
// { dg-do compile }
// Test to allow for va_copy with C++0x standard.
#include <cstdarg>
va_list x;
va_list y;
int main ()
{
va_copy (y, x);
}
Go to most recent revision | Compare with Previous | Blame | View Log