URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [cond-lvalue-1.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test for deprecation of conditional expressions as lvalues. */ /* Origin: Joseph Myers <jsm@polyomino.org.uk> */ /* { dg-do compile } */ /* { dg-options "" } */ int x, y, z; void foo (void) { (x ? y : z) = 1; /* { dg-bogus "warning" "warning in place of error" } */ } /* { dg-error "lvalue" "conditional expression as lvalue" { target *-*-* } 11 } */
Go to most recent revision | Compare with Previous | Blame | View Log