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
8fc95c05
Commit
8fc95c05
authored
Jun 20, 2013
by
Jason Merrill
Committed by
Jason Merrill
Jun 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* decl.c (compute_array_index_type): Use size_one_node.
From-SVN: r200278
parent
0daa6ac0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletions
+3
-1
gcc/cp/ChangeLog
+2
-0
gcc/cp/decl.c
+1
-1
No files found.
gcc/cp/ChangeLog
View file @
8fc95c05
2013-06-20 Jason Merrill <jason@redhat.com>
* decl.c (compute_array_index_type): Use size_one_node.
* pt.c (process_partial_specialization): Build a TEMPLATE_DECL for
a partial specialization.
(tsubst_decl): Don't clobber CLASSTYPE_TI_TEMPLATE of a partial
...
...
gcc/cp/decl.c
View file @
8fc95c05
...
...
@@ -8241,7 +8241,7 @@ compute_array_index_type (tree name, tree size, tsubst_flags_t complain)
constant. Just build the index type and mark that it requires
structural equality checks. */
itype
=
build_index_type
(
build_min
(
MINUS_EXPR
,
sizetype
,
size
,
integer
_one_node
));
size
,
size
_one_node
));
TYPE_DEPENDENT_P
(
itype
)
=
1
;
TYPE_DEPENDENT_P_VALID
(
itype
)
=
1
;
SET_TYPE_STRUCTURAL_EQUALITY
(
itype
);
...
...
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