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
8ef2bf23
Commit
8ef2bf23
authored
Jul 18, 1995
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(do_include): Prefix -H output lines with spaces, not dots.
(output_dots): Remove. From-SVN: r10150
parent
3d130605
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
17 deletions
+2
-17
gcc/cccp.c
+2
-17
No files found.
gcc/cccp.c
View file @
8ef2bf23
...
@@ -1200,7 +1200,6 @@ static GENERIC_PTR xcalloc PROTO((size_t, size_t));
...
@@ -1200,7 +1200,6 @@ static GENERIC_PTR xcalloc PROTO((size_t, size_t));
static
char
*
savestring
PROTO
((
char
*
));
static
char
*
savestring
PROTO
((
char
*
));
static
int
file_size_and_mode
PROTO
((
int
,
int
*
,
long
int
*
));
static
int
file_size_and_mode
PROTO
((
int
,
int
*
,
long
int
*
));
static
void
output_dots
PROTO
((
FILE
*
,
int
));
/* Read LEN bytes at PTR from descriptor DESC, for file FILENAME,
/* Read LEN bytes at PTR from descriptor DESC, for file FILENAME,
retrying if necessary. Return a negative value if an error occurs,
retrying if necessary. Return a negative value if an error occurs,
...
@@ -4633,10 +4632,8 @@ get_filename:
...
@@ -4633,10 +4632,8 @@ get_filename:
}
}
/* Handle -H option. */
/* Handle -H option. */
if
(
print_include_names
)
{
if
(
print_include_names
)
output_dots
(
stderr
,
indepth
);
fprintf
(
stderr
,
"%*s%s
\n
"
,
indepth
,
""
,
fname
);
fprintf
(
stderr
,
"%s
\n
"
,
fname
);
}
if
(
angle_brackets
)
if
(
angle_brackets
)
system_include_depth
++
;
system_include_depth
++
;
...
@@ -10030,18 +10027,6 @@ file_size_and_mode (fd, mode_pointer, size_pointer)
...
@@ -10030,18 +10027,6 @@ file_size_and_mode (fd, mode_pointer, size_pointer)
if
(
size_pointer
)
*
size_pointer
=
sbuf
.
st_size
;
if
(
size_pointer
)
*
size_pointer
=
sbuf
.
st_size
;
return
0
;
return
0
;
}
}
static
void
output_dots
(
fd
,
depth
)
FILE
*
fd
;
int
depth
;
{
while
(
depth
>
0
)
{
putc
(
'.'
,
fd
);
depth
--
;
}
}
#ifdef VMS
#ifdef VMS
...
...
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