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
bbc06b4b
Commit
bbc06b4b
authored
26 years ago
by
Jason Merrill
Committed by
Jason Merrill
26 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pt.c (for_each_template_parm): Use first_rtl_op.
From-SVN: r20171
parent
994d3884
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/cp/ChangeLog
+2
-0
gcc/cp/g++FAQ.texi
+0
-0
gcc/cp/pt.c
+1
-1
No files found.
gcc/cp/ChangeLog
View file @
bbc06b4b
1998-06-01 Jason Merrill <jason@yorick.cygnus.com>
* pt.c (for_each_template_parm): Use first_rtl_op.
* tree.c (build_cplus_array_type_1): Also check index_type for
template parms.
...
...
This diff is collapsed.
Click to expand it.
gcc/cp/g++FAQ.texi
View file @
bbc06b4b
This diff is collapsed.
Click to expand it.
gcc/cp/pt.c
View file @
bbc06b4b
...
...
@@ -3316,7 +3316,7 @@ for_each_template_parm (t, fn, data)
case
'<'
:
{
int
i
;
for
(
i
=
tree_code_length
[(
int
)
TREE_CODE
(
t
)]
;
--
i
>=
0
;)
for
(
i
=
first_rtl_op
(
TREE_CODE
(
t
))
;
--
i
>=
0
;)
if
(
for_each_template_parm
(
TREE_OPERAND
(
t
,
i
),
fn
,
data
))
return
1
;
return
0
;
...
...
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