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
eeac616e
Commit
eeac616e
authored
Dec 02, 2005
by
Volker Reichelt
Committed by
Volker Reichelt
Dec 02, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c (execute): Improve readability.
From-SVN: r107886
parent
4e20d9c4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+4
-0
gcc/gcc.c
+4
-3
No files found.
gcc/ChangeLog
View file @
eeac616e
2005
-
12
-
02
Volker
Reichelt
<
reichelt
@igpm
.
rwth
-
aachen
.
de
>
*
gcc
.
c
(
execute
)
:
Improve
readability
.
2005
-
12
-
02
Richard
Guenther
<
rguenther
@suse
.
de
>
*
tree
-
cfg
.
c
(
mark_used_vars
)
:
New
function
.
...
...
gcc/gcc.c
View file @
eeac616e
...
...
@@ -2871,7 +2871,10 @@ execute (void)
we would otherwise have succeeded. */
if
(
WTERMSIG
(
status
)
==
SIGPIPE
&&
(
signal_count
||
greatest_status
>=
MIN_FATAL_STATUS
))
;
{
signal_count
++
;
ret_code
=
-
1
;
}
else
#endif
fatal
(
"\
...
...
@@ -2880,8 +2883,6 @@ Please submit a full bug report.\n\
See %s for instructions."
,
strsignal
(
WTERMSIG
(
status
)),
commands
[
i
].
prog
,
bug_report_url
);
signal_count
++
;
ret_code
=
-
1
;
}
else
if
(
WIFEXITED
(
status
)
&&
WEXITSTATUS
(
status
)
>=
MIN_FATAL_STATUS
)
...
...
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