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
309a8875
Commit
309a8875
authored
Aug 28, 1996
by
Doug Evans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(print_single_switch): Ultrix fprintf returns 0 on success.
From-SVN: r12676
parent
ff482cef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
gcc/toplev.c
+11
-4
No files found.
gcc/toplev.c
View file @
309a8875
...
...
@@ -4120,7 +4120,8 @@ print_version (file, indent)
}
/* Print an option value and return the adjusted position in the line.
??? We don't handle error returns from fprintf (disk full). */
??? We don't handle error returns from fprintf (disk full); presumably
other code will catch a disk full though. */
int
print_single_switch
(
file
,
pos
,
max
,
indent
,
sep
,
term
,
type
,
name
)
...
...
@@ -4128,17 +4129,23 @@ print_single_switch (file, pos, max, indent, sep, term, type, name)
int
pos
,
max
;
char
*
indent
,
*
sep
,
*
term
,
*
type
,
*
name
;
{
/* The ultrix fprintf returns 0 on success, so compute the result we want
here since we need it for the following test. */
int
len
=
strlen
(
sep
)
+
strlen
(
type
)
+
strlen
(
name
);
if
(
pos
!=
0
&&
pos
+
strlen
(
sep
)
+
strlen
(
type
)
+
strlen
(
name
)
>
max
)
&&
pos
+
len
>
max
)
{
fprintf
(
file
,
"%s"
,
term
);
pos
=
0
;
}
if
(
pos
==
0
)
{
pos
=
fprintf
(
file
,
"%s"
,
indent
);
fprintf
(
file
,
"%s"
,
indent
);
pos
=
strlen
(
indent
);
}
pos
+=
fprintf
(
file
,
"%s%s%s"
,
sep
,
type
,
name
);
fprintf
(
file
,
"%s%s%s"
,
sep
,
type
,
name
);
pos
+=
len
;
return
pos
;
}
...
...
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