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
fecafe5e
Commit
fecafe5e
authored
Sep 20, 2003
by
Nathan Sidwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apparently managed not to commit the crucial part of c++/12332
From-SVN: r71607
parent
2c49cd9e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
gcc/cp/pt.c
+7
-2
No files found.
gcc/cp/pt.c
View file @
fecafe5e
...
@@ -5280,8 +5280,13 @@ instantiate_class_template (tree type)
...
@@ -5280,8 +5280,13 @@ instantiate_class_template (tree type)
||
DECL_FUNCTION_TEMPLATE_P
(
t
))
||
DECL_FUNCTION_TEMPLATE_P
(
t
))
{
{
/* Build new TYPE_METHODS. */
/* Build new TYPE_METHODS. */
tree
r
;
tree
r
=
tsubst
(
t
,
args
,
tf_error
,
NULL_TREE
);
if
(
TREE_CODE
(
t
)
==
TEMPLATE_DECL
)
processing_template_decl
++
;
r
=
tsubst
(
t
,
args
,
tf_error
,
NULL_TREE
);
if
(
TREE_CODE
(
t
)
==
TEMPLATE_DECL
)
processing_template_decl
--
;
set_current_access_from_decl
(
r
);
set_current_access_from_decl
(
r
);
grok_special_member_properties
(
r
);
grok_special_member_properties
(
r
);
finish_member_declaration
(
r
);
finish_member_declaration
(
r
);
...
...
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