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