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
3474f462
Commit
3474f462
authored
26 years ago
by
Andrew MacLeod
Committed by
Andrew Macleod
26 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clear TREE_USED f;ag for build_type_variant types as well
From-SVN: r19611
parent
76b4b31e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
gcc/cp/ChangeLog
+7
-1
gcc/cp/method.c
+6
-1
No files found.
gcc/cp/ChangeLog
View file @
3474f462
Thu May 7 17:09:25 EDT 1998 Andrew MacLeod <amacleod@cygnus.com>
* method.c (build_decl_overload_real): Set TREE_USED flag to
zero for build_type_variants nodes as well.
Wed May 6 19:27:09 1998 Jason Merrill <jason@yorick.cygnus.com>
* pt.c (tsubst): Don't tsubst the type of an IDENTIFIER_NODE.
...
...
@@ -40,7 +45,8 @@ Tue May 5 23:54:04 1998 Jason Merrill <jason@yorick.cygnus.com>
Tue May 5 18:24:13 EDT 1998 Andrew MacLeod <amacleod@cygnus.com>
* method.c: Add a call to build_type_variant to get the right type.
* method.c (build_mangled_name): Add a call to build_type_variant
to get the right type.
Tue May 5 01:25:03 1998 Jason Merrill <jason@yorick.cygnus.com>
...
...
This diff is collapsed.
Click to expand it.
gcc/cp/method.c
View file @
3474f462
...
...
@@ -1621,7 +1621,12 @@ build_decl_overload_real (dname, parms, ret_type, tparms, targs,
typevec
=
NULL
;
while
(
t
)
{
TREE_USED
(
TREE_VALUE
(
t
))
=
0
;
tree
temp
=
TREE_VALUE
(
t
);
TREE_USED
(
temp
)
=
0
;
/* clear out the type variant in case we used it */
temp
=
build_type_variant
(
TYPE_MAIN_VARIANT
(
temp
),
TYPE_READONLY
(
temp
),
TYPE_VOLATILE
(
temp
));
TREE_USED
(
temp
)
=
0
;
t
=
TREE_CHAIN
(
t
);
}
}
...
...
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