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
2dbfb418
Commit
2dbfb418
authored
Feb 13, 1998
by
Jason Merrill
Committed by
Jason Merrill
Feb 12, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* call.c (standard_conversion): A BASE_CONV replaces an RVALUE_CONV.
From-SVN: r17898
parent
1398405b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/cp/ChangeLog
+4
-0
gcc/cp/call.c
+5
-1
No files found.
gcc/cp/ChangeLog
View file @
2dbfb418
Fri Feb 13 01:36:42 1998 Jason Merrill <jason@yorick.cygnus.com>
* call.c (standard_conversion): A BASE_CONV replaces an RVALUE_CONV.
Fri Feb 13 00:21:59 1998 Jason Merrill <jason@yorick.cygnus.com>
* cp-tree.h: Add access_protected_virtual_node.
...
...
gcc/cp/call.c
View file @
2dbfb418
...
...
@@ -3212,7 +3212,11 @@ standard_conversion (to, from, expr)
}
else
if
(
IS_AGGR_TYPE
(
to
)
&&
IS_AGGR_TYPE
(
from
)
&&
DERIVED_FROM_P
(
to
,
from
))
conv
=
build_conv
(
BASE_CONV
,
to
,
conv
);
{
if
(
TREE_CODE
(
conv
)
==
RVALUE_CONV
)
conv
=
TREE_OPERAND
(
conv
,
0
);
conv
=
build_conv
(
BASE_CONV
,
to
,
conv
);
}
else
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