URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [call-diag-1.c] - Rev 689
Compare with Previous | Blame | View Log
/* The warning for calling through a non-compatible type must not disable the normal diagnostics from comparing the argument list against the type of the called expression. */ /* Origin: Joseph Myers <joseph@codesourcery.com> */ /* { dg-do compile } */ /* { dg-options "" } */ void foo (void); void bar (void) { ((long (*)(int))foo) (); } /* { dg-error "too few arguments to function" } */