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
7db9125f
Commit
7db9125f
authored
Aug 22, 2000
by
Jeffrey A Law
Committed by
Jeff Law
Aug 22, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* protoize.c (munge_compile_params): Fix typo and formatting buglets.
From-SVN: r35867
parent
b413d64d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/ChangeLog
+4
-0
gcc/protoize.c
+3
-2
No files found.
gcc/ChangeLog
View file @
7db9125f
Tue Aug 22 01:44:43 2000 Jeffrey A Law (law@cygnus.com)
* protoize.c (munge_compile_params): Fix typo and formatting buglets.
2000-08-22 Gabriel Dos Reis <gdr@codesourcery.com>
2000-08-22 Gabriel Dos Reis <gdr@codesourcery.com>
* diagnostic.h (report_problematic_module): Declare.
* diagnostic.h (report_problematic_module): Declare.
...
...
gcc/protoize.c
View file @
7db9125f
...
@@ -2000,8 +2000,9 @@ munge_compile_params (params_list)
...
@@ -2000,8 +2000,9 @@ munge_compile_params (params_list)
temp_params
[
param_count
++
]
=
"-S"
;
temp_params
[
param_count
++
]
=
"-S"
;
temp_params
[
param_count
++
]
=
"-o"
;
temp_params
[
param_count
++
]
=
"-o"
;
if
((
stat
(
HOST_BIT_BUCKET
,
&
st
)
==
0
)
&&
(
!
S_ISDIR
(
st
.
st_mode
))
if
((
stat
(
HOST_BIT_BUCKET
,
&
st
)
==
0
)
(
access
(
HOST_BIT_BUCKET
,
W_OK
)
==
0
))
&&
(
!
S_ISDIR
(
st
.
st_mode
))
&&
(
access
(
HOST_BIT_BUCKET
,
W_OK
)
==
0
))
temp_params
[
param_count
++
]
=
HOST_BIT_BUCKET
;
temp_params
[
param_count
++
]
=
HOST_BIT_BUCKET
;
else
else
/* FIXME: This is hardly likely to be right, if HOST_BIT_BUCKET is not
/* FIXME: This is hardly likely to be right, if HOST_BIT_BUCKET is not
...
...
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