summaryrefslogtreecommitdiff
path: root/gcc/config/mips
diff options
context:
space:
mode:
authorraeburn <raeburn@138bc75d-0d04-0410-961f-82ee72b054a4>1998-04-07 13:29:03 +0000
committerraeburn <raeburn@138bc75d-0d04-0410-961f-82ee72b054a4>1998-04-07 13:29:03 +0000
commit881d3b0a2d9fb12915358aeedcfd7a145f02a609 (patch)
treebc83a66bc307902571f45a956f7f521cce02bd6d /gcc/config/mips
parent4c6850154f71dfe2196adf04daa6193d52b7197f (diff)
downloadgcc-881d3b0a2d9fb12915358aeedcfd7a145f02a609.tar.gz
Remove SIGINFO handling from mips.c.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19033 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips')
-rw-r--r--gcc/config/mips/mips.c27
1 files changed, 0 insertions, 27 deletions
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
@@ -3969,20 +3969,6 @@ trace (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 : "<toplevel>",
- (current_function_file != (char *)0) ? current_function_file : "<no 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. */