From e7d075bfb3fe132a10dc07dc9a942f9d5efb405b Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 7 Apr 1998 13:29:03 +0000 Subject: [PATCH] Remove SIGINFO handling from mips.c. From-SVN: r19033 --- gcc/ChangeLog | 5 +++++ gcc/config/mips/mips.c | 27 --------------------------- 2 files changed, 5 insertions(+), 27 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9d70161c3a6..7c9e20dfe10 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +1998-04-07 Ken Raeburn + + * config/mips/mips.c (siginfo): Deleted. + (override_options): Don't install SIGINFO signal handler. + Tue Apr 7 11:58:04 1998 Jim Wilson * loop.c (check_dbra_loop): When normalize comparison_val, add check diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index e2f03f92c96..4f8f3e5370f 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -3968,20 +3968,6 @@ trace (s, s1, s2) fprintf (stderr, s, s1, s2); } - -#ifdef SIGINFO - -static void -siginfo (signo) - int signo; -{ - fprintf (stderr, "compiling '%s' in '%s'\n", - (current_function_name != (char *)0) ? current_function_name : "", - (current_function_file != (char *)0) ? current_function_file : ""); - fflush (stderr); -} -#endif /* SIGINFO */ - /* Set up the threshold for data to go into the small data area, instead of the normal data area, and detect any conflicts in the switches. */ @@ -4367,19 +4353,6 @@ override_options () else mips16 = 0; - /* If this is OSF/1, set up a SIGINFO handler so we can see what function - is currently being compiled. */ -#ifdef SIGINFO - if (getenv ("GCC_SIGINFO") != (char *)0) - { - struct sigaction action; - action.sa_handler = siginfo; - action.sa_mask = 0; - action.sa_flags = SA_RESTART; - sigaction (SIGINFO, &action, (struct sigaction *)0); - } -#endif - #if defined(_IOLBF) #if defined(ultrix) || defined(__ultrix) || defined(__OSF1__) || defined(__osf__) || defined(osf) /* If -mstats and -quiet, make stderr line buffered. */ -- 2.30.2