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
8be0a930
Commit
8be0a930
authored
Jun 14, 1999
by
Nathan Sidwell
Committed by
Nathan Sidwell
Jun 14, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* call.c (build_new_op): Remove REF_BIND from all operands.
From-SVN: r27510
parent
ecad2425
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
gcc/cp/ChangeLog
+4
-0
gcc/cp/call.c
+12
-2
No files found.
gcc/cp/ChangeLog
View file @
8be0a930
1999-06-14 Nathan Sidwell <nathan@acm.org>
* call.c (build_new_op): Remove REF_BIND from all operands.
1999-06-13 Alexandre Oliva <oliva@dcc.unicamp.br>
1999-06-13 Alexandre Oliva <oliva@dcc.unicamp.br>
* init.c (build_new_1): Look up operator delete even if there was
* init.c (build_new_1): Look up operator delete even if there was
...
...
gcc/cp/call.c
View file @
8be0a930
...
@@ -2655,9 +2655,19 @@ build_new_op (code, flags, arg1, arg2, arg3)
...
@@ -2655,9 +2655,19 @@ build_new_op (code, flags, arg1, arg2, arg3)
conv
=
TREE_OPERAND
(
conv
,
0
);
conv
=
TREE_OPERAND
(
conv
,
0
);
arg1
=
convert_like
(
conv
,
arg1
);
arg1
=
convert_like
(
conv
,
arg1
);
if
(
arg2
)
if
(
arg2
)
arg2
=
convert_like
(
TREE_VEC_ELT
(
cand
->
convs
,
1
),
arg2
);
{
conv
=
TREE_VEC_ELT
(
cand
->
convs
,
1
);
if
(
TREE_CODE
(
conv
)
==
REF_BIND
)
conv
=
TREE_OPERAND
(
conv
,
0
);
arg2
=
convert_like
(
conv
,
arg2
);
}
if
(
arg3
)
if
(
arg3
)
arg3
=
convert_like
(
TREE_VEC_ELT
(
cand
->
convs
,
2
),
arg3
);
{
conv
=
TREE_VEC_ELT
(
cand
->
convs
,
2
);
if
(
TREE_CODE
(
conv
)
==
REF_BIND
)
conv
=
TREE_OPERAND
(
conv
,
0
);
arg3
=
convert_like
(
conv
,
arg3
);
}
builtin
:
builtin
:
switch
(
code
)
switch
(
code
)
...
...
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