blob: 5cb3b0554ee4b360ea19ea55c05d6874ae3f17d5 [file] [log] [blame]
/* { dg-require-effective-target indirect_calls } */
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) ();
}