Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e7d075bf
Commit
e7d075bf
authored
Apr 07, 1998
by
Ken Raeburn
Committed by
Ken Raeburn
Apr 07, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove SIGINFO handling from mips.c.
From-SVN: r19033
parent
473fe49b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
27 deletions
+5
-27
gcc/ChangeLog
+5
-0
gcc/config/mips/mips.c
+0
-27
No files found.
gcc/ChangeLog
View file @
e7d075bf
1998-04-07 Ken Raeburn <raeburn@cygnus.com>
* config/mips/mips.c (siginfo): Deleted.
(override_options): Don't install SIGINFO signal handler.
Tue Apr 7 11:58:04 1998 Jim Wilson <wilson@cygnus.com>
* loop.c (check_dbra_loop): When normalize comparison_val, add check
...
...
gcc/config/mips/mips.c
View file @
e7d075bf
...
...
@@ -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. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment