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
b67b23f0
Commit
b67b23f0
authored
May 26, 2017
by
Nathan Sidwell
Committed by
Nathan Sidwell
May 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* name-lookup.c (name_lookup::search_adl): ADL OMP UDR type args.
From-SVN: r248506
parent
e929e611
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/cp/ChangeLog
+4
-0
gcc/cp/name-lookup.c
+5
-3
No files found.
gcc/cp/ChangeLog
View file @
b67b23f0
2017-05-26 Nathan Sidwell <nathan@acm.org>
* name-lookup.c (name_lookup::search_adl): ADL OMP UDR type args.
2017-05-26 Jakub Jelinek <jakub@redhat.com>
* cp-tree.h (struct lang_decl_decomp): New type.
...
...
gcc/cp/name-lookup.c
View file @
b67b23f0
...
...
@@ -998,9 +998,11 @@ name_lookup::search_adl (tree fns, vec<tree, va_gc> *args)
tree
arg
;
FOR_EACH_VEC_ELT_REVERSE
(
*
args
,
ix
,
arg
)
/* OMP reduction operators put a type as the first arg. I don't
suppose we should ADL on that? */
if
(
!
TYPE_P
(
arg
))
/* OMP reduction operators put an ADL-significant type as the
first arg. */
if
(
TYPE_P
(
arg
))
adl_type
(
arg
);
else
adl_expr
(
arg
);
delete
fn_set
;
...
...
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