URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wunused-parm-4.C] - Rev 694
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/47783
// { dg-do compile }
// { dg-options "-Wunused -W" }
struct R
{
int &i;
};
void
foo (R r, int &s)
{
r.i = 7;
s = 8;
}
int
bar ()
{
int x = 1, y = 1;
R r = { x };
foo (r, y);
return x + y;
}
Go to most recent revision | Compare with Previous | Blame | View Log