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
f75b407f
Commit
f75b407f
authored
Mar 10, 2003
by
Roger Sayle
Committed by
Roger Sayle
Mar 10, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* com.c (duplicate_decls): Synchronize with C's duplicate_decls.
From-SVN: r64142
parent
2d8d15b7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
gcc/f/ChangeLog
+4
-0
gcc/f/com.c
+1
-4
No files found.
gcc/f/ChangeLog
View file @
f75b407f
2003
-
03
-
10
Roger
Sayle
<
roger
@eyesopen
.
com
>
*
com
.
c
(
duplicate_decls
)
:
Synchronize
with
C
'
s
duplicate_decls
.
Sat
Mar
8
21
:
11
:
40
2003
Neil
Booth
<
neil
@daikokuya
.
co
.
uk
>
*
com
.
c
(
ffe_init
)
:
Update
prototype
;
move
code
to
ffe_post_options
.
...
...
gcc/f/com.c
View file @
f75b407f
/* com.c -- Implementation File (module.c template V1.0)
Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
, 2003
Free Software Foundation, Inc.
Contributed by James Craig Burley.
...
...
@@ -13220,9 +13220,6 @@ duplicate_decls (tree newdecl, tree olddecl)
COPY_DECL_RTL
(
olddecl
,
newdecl
);
/* Merge the type qualifiers. */
if
(
DECL_BUILT_IN_NONANSI
(
olddecl
)
&&
TREE_THIS_VOLATILE
(
olddecl
)
&&
!
TREE_THIS_VOLATILE
(
newdecl
))
TREE_THIS_VOLATILE
(
olddecl
)
=
0
;
if
(
TREE_READONLY
(
newdecl
))
TREE_READONLY
(
olddecl
)
=
1
;
if
(
TREE_THIS_VOLATILE
(
newdecl
))
...
...
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