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
fab09a24
Commit
fab09a24
authored
24 years ago
by
Jason Merrill
Committed by
Jason Merrill
24 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* decl.c (pushdecl): Don't check for linkage on a non-decl.
From-SVN: r38290
parent
1e185c02
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
gcc/cp/ChangeLog
+2
-0
gcc/cp/decl.c
+3
-2
gcc/testsuite/g++.old-deja/g++.other/local4.C
+10
-0
No files found.
gcc/cp/ChangeLog
View file @
fab09a24
2000-12-15 Jason Merrill <jason@redhat.com>
* decl.c (pushdecl): Don't check for linkage on a non-decl.
* call.c (build_op_delete_call): See through ARRAY_TYPEs.
* call.c (build_new_function_call): Lose space before paren in
...
...
This diff is collapsed.
Click to expand it.
gcc/cp/decl.c
View file @
fab09a24
...
...
@@ -3821,8 +3821,9 @@ pushdecl (x)
/* Or in the innermost namespace. */
if
(
!
t
)
t
=
namespace_binding
(
name
,
DECL_CONTEXT
(
x
));
/* Does it have linkage? */
if
(
t
&&
!
(
TREE_STATIC
(
t
)
||
DECL_EXTERNAL
(
t
)))
/* Does it have linkage? Note that if this isn't a DECL, it's an
OVERLOAD, which is OK. */
if
(
t
&&
DECL_P
(
t
)
&&
!
(
TREE_STATIC
(
t
)
||
DECL_EXTERNAL
(
t
)))
t
=
NULL_TREE
;
if
(
t
)
different_binding_level
=
1
;
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.other/local4.C
0 → 100644
View file @
fab09a24
// Test that a local declaration of one of a global overload set works
int
f
()
{
return
0
;
}
int
f
(
int
);
int
main
()
{
int
f
();
return
f
();
}
This diff is collapsed.
Click to expand it.
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