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
e3c56d1b
Commit
e3c56d1b
authored
Nov 11, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(duplicate_decls): Properly merge decls with differing DECL_CONTEXT.
From-SVN: r8428
parent
199b61d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
gcc/c-decl.c
+7
-2
No files found.
gcc/c-decl.c
View file @
e3c56d1b
...
@@ -1698,11 +1698,16 @@ duplicate_decls (newdecl, olddecl)
...
@@ -1698,11 +1698,16 @@ duplicate_decls (newdecl, olddecl)
make_var_volatile
(
newdecl
);
make_var_volatile
(
newdecl
);
}
}
/* Keep source location of definition rather than declaration. */
/* Keep source location of definition rather than declaration.
if
(
DECL_INITIAL
(
newdecl
)
==
0
&&
DECL_INITIAL
(
olddecl
)
!=
0
)
Likewise, keep decl at outer scope. */
if
((
DECL_INITIAL
(
newdecl
)
==
0
&&
DECL_INITIAL
(
olddecl
)
!=
0
)
||
(
DECL_CONTEXT
(
newdecl
)
!=
0
&&
DECL_CONTEXT
(
olddecl
)
==
0
))
{
{
DECL_SOURCE_LINE
(
newdecl
)
=
DECL_SOURCE_LINE
(
olddecl
);
DECL_SOURCE_LINE
(
newdecl
)
=
DECL_SOURCE_LINE
(
olddecl
);
DECL_SOURCE_FILE
(
newdecl
)
=
DECL_SOURCE_FILE
(
olddecl
);
DECL_SOURCE_FILE
(
newdecl
)
=
DECL_SOURCE_FILE
(
olddecl
);
if
(
DECL_CONTEXT
(
olddecl
)
==
0
)
DECL_CONTEXT
(
newdecl
)
=
0
;
}
}
/* Merge the unused-warning information. */
/* Merge the unused-warning information. */
...
...
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