diff options
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index f783ed92f73..7b49110d925 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -74,6 +74,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "langhooks.h" #include "cfglayout.h" #include "cfgloop.h" +#include "hosthooks.h" #if defined (DWARF2_UNWIND_INFO) || defined (DWARF2_DEBUGGING_INFO) #include "dwarf2out.h" @@ -4759,6 +4760,9 @@ general_init (argv0) signal (SIGFPE, crash_signal); #endif + /* Other host-specific signal setup. */ + (*host_hooks.extra_signals)(); + /* Initialize the diagnostics reporting machinery, so option parsing can give warnings and errors. */ diagnostic_initialize (global_dc); |