Fix unused warnings.
[official-gcc/graphite-test-results.git] / gcc / testsuite / gcc.c-torture / compile / pr39941.c
blobb6209086be920f86b4a9fce663dd23aa4316633e
1 typedef void (*entry_func) (void) __attribute__ ((noreturn));
2 extern entry_func entry_addr;
3 static void bsd_boot_entry (void)
5 stop ();
6 }
7 void bsd_boot (void)
9 entry_addr = (entry_func) bsd_boot_entry;
10 (*entry_addr) ();