URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [warn/] [pr36954.C] - Rev 862
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/36954
// { dg-do compile }
// { dg-options "-Wlogical-op -Wextra -Wall" }
template<class C> void Test()
{
if ((1 == 2) || (true)) {
}
if ((1 == 2) || (!false)) {
}
if (false || true) {
}
}
int main() {
if ((1 == 2) || (true)) {
}
}
Go to most recent revision | Compare with Previous | Blame | View Log