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
d1fefbce
Commit
d1fefbce
authored
Jan 23, 1998
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert last change
From-SVN: r17460
parent
03566575
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
gcc/cp/ChangeLog
+1
-5
gcc/cp/decl2.c
+4
-1
No files found.
gcc/cp/ChangeLog
View file @
d1fefbce
Thu Jan 22 21:30:42 1998 Mark Mitchell <mmitchell@usa.net>
* decl2.c (grok_x_components): Always call grok_enum_decls.
Wed Jan 21 10:29:57 1998 Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>
* pt.c (coerce_template_parms): Don't access elements of ARGLIST
that
is
not really present. Substitute default arguments in
that
are
not really present. Substitute default arguments in
template template arguments. Correctly convert TEMPLATE_DECL to
TEMPLATE_TEMPLATE_PARM.
(comp_template_args): TEMPLATE_DECL and TEMPLATE_TEMPLATE_PARM
...
...
gcc/cp/decl2.c
View file @
d1fefbce
...
...
@@ -931,7 +931,10 @@ grok_x_components (specs, components)
else
{
t
=
TREE_TYPE
(
components
);
return
grok_enum_decls
(
t
,
components
);
if
(
TREE_CODE
(
t
)
==
ENUMERAL_TYPE
&&
TREE_NONLOCAL_FLAG
(
t
))
return
grok_enum_decls
(
t
,
components
);
else
return
components
;
}
}
...
...
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