URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [pr29521-2.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 29521 : warning for return with expression in function returning void */ /* { dg-do compile } */ /* { dg-options "-pedantic-errors" } */ void func (void) { } void func2 (void) { return func (); /* { dg-error "ISO C forbids 'return' with expression" } */ } void func3 (void) { return 1; /* { dg-error "'return' with a value" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log