URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wunused-var-16.C] - Rev 694
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/50158
// { dg-do compile }
// { dg-options "-Wunused" }
int bar (int);
int
foo (int a)
{
int b[] = { a, -a };
a += b[bar (a) < a];
return a;
}
Go to most recent revision | Compare with Previous | Blame | View Log