URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [call-trap-1.c] - Rev 711
Go to most recent revision | Compare with Previous | Blame | View Log
/* Undefined behavior from a call to a function cast to a different type does not appear until after the function designator and arguments have been evaluated. PR 38483. */ /* Origin: Joseph Myers <joseph@codesourcery.com> */ extern void exit (int); extern void abort (void); int foo (void) { exit (0); return 0; } void bar (void) { } int main (void) { ((long (*)(int))bar) (foo ()); abort (); }
Go to most recent revision | Compare with Previous | Blame | View Log