rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr39941.c

13 lines
234 B
C

typedef void (*entry_func) (void) __attribute__ ((noreturn));
extern entry_func entry_addr;
static void bsd_boot_entry (void)
{
stop ();
}
void bsd_boot (void)
{
entry_addr = (entry_func) bsd_boot_entry;
(*entry_addr) ();
}