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
82614ffb
Commit
82614ffb
authored
Aug 13, 2019
by
Marek Polacek
Committed by
Marek Polacek
Aug 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cp-tree.h (DECL_MUTABLE_P): Use FIELD_DECL_CHECK.
From-SVN: r274381
parent
8fc306e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/cp/ChangeLog
+4
-0
gcc/cp/cp-tree.h
+2
-2
No files found.
gcc/cp/ChangeLog
View file @
82614ffb
2019-08-13 Marek Polacek <polacek@redhat.com>
* cp-tree.h (DECL_MUTABLE_P): Use FIELD_DECL_CHECK.
2019-08-10 Jakub Jelinek <jakub@redhat.com>
* parser.c (cp_parser_omp_clause_name): Parse device_type.
...
...
gcc/cp/cp-tree.h
View file @
82614ffb
...
...
@@ -3065,9 +3065,9 @@ struct GTY(()) lang_decl {
(DECL_NONSTATIC_MEMBER_FUNCTION_P (NODE) \
|| TREE_CODE (NODE) == FIELD_DECL)
/* Nonzero for _DECL means that this member object type
/* Nonzero for
a FIELD
_DECL means that this member object type
is mutable. */
#define DECL_MUTABLE_P(NODE) (DECL_LANG_FLAG_0 (
NODE
))
#define DECL_MUTABLE_P(NODE) (DECL_LANG_FLAG_0 (
FIELD_DECL_CHECK (NODE)
))
/* Nonzero for _DECL means that this constructor or conversion function is
non-converting. */
...
...
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