URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wunused-15.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/39875
// { dg-do compile }
// { dg-options "-Wunused-value" }
int *i;
void
foo ()
{
*i++; // { dg-warning "value computed is not used" }
(void) *i++; // { dg-bogus "value computed is not used" }
}
Go to most recent revision | Compare with Previous | Blame | View Log