URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [expr/] [cond9.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/27666
struct A { // { dg-message "A" }
A(int); // { dg-message "A" }
};
void foo(volatile A a) {
1 ? a : 0; // { dg-error "match|temporary" }
// { dg-message "candidate" "candidate note" { target *-*-* } 8 }
1 ? 0 : a; // { dg-error "match|temporary" }
// { dg-message "candidate" "candidate note" { target *-*-* } 10 }
}
Go to most recent revision | Compare with Previous | Blame | View Log