URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [warn/] [Wunused-13.C] - Rev 694
Go to most recent revision | Compare with Previous | Blame | View Log
// Test whether -Wunused handles effectless indirect_ref operation ('*').
// { dg-do compile }
// { dg-options "-Wunused" }
void Foo(int* x) {
*x++; // { dg-warning "value computed is not used" }
}
Go to most recent revision | Compare with Previous | Blame | View Log