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
3add6264
Commit
3add6264
authored
Aug 23, 2000
by
Theodore Papadopoulo
Committed by
Jason Merrill
Aug 22, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* decl2.c (arg_assoc): Revert my 2000-08-11 change.
From-SVN: r35895
parent
a86d4a91
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
10 deletions
+7
-10
gcc/cp/ChangeLog
+4
-1
gcc/cp/decl2.c
+3
-9
No files found.
gcc/cp/ChangeLog
View file @
3add6264
2000-08-22 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
* decl2.c (arg_assoc): Revert my 2000-08-11 change.
2000-08-22 Gabriel Dos Reis <gdr@codesourcery.com>
* Makefile.in (error.o): Depends on diagnostic.h
...
...
@@ -31,7 +35,6 @@
change of 1995-04-13.
(push_tinst_level): Call print_instantiation_context.
2000-08-21 Nix <nix@esperi.demon.co.uk>
* lang-specs.h: Do not process -o or run the assembler if
...
...
gcc/cp/decl2.c
View file @
3add6264
...
...
@@ -5068,15 +5068,9 @@ arg_assoc (k, n)
{
my_friendly_assert
(
TREE_CODE
(
n
)
==
OVERLOAD
,
980715
);
for
(;
n
;
n
=
OVL_CHAIN
(
n
))
{
/* Do not consider function template decls during Koenig lookup. */
tree
fn
=
OVL_FUNCTION
(
n
);
if
(
!
DECL_FUNCTION_TEMPLATE_P
(
fn
)
&&
arg_assoc_type
(
k
,
TREE_TYPE
(
fn
)))
return
1
;
}
for
(;
n
;
n
=
OVL_CHAIN
(
n
))
if
(
arg_assoc_type
(
k
,
TREE_TYPE
(
OVL_FUNCTION
(
n
))))
return
1
;
}
return
0
;
...
...
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