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
bdba2263
Commit
bdba2263
authored
Jan 29, 2008
by
Michael Meissner
Committed by
Michael Meissner
Jan 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 35004, grow tree_code bitfield to 16 bits
From-SVN: r131943
parent
ed32d842
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/cp/ChangeLog
+7
-0
gcc/cp/cp-tree.h
+2
-2
No files found.
gcc/cp/ChangeLog
View file @
bdba2263
2008-01-29 Michael Meissner <michael.meissner@amd.com>
PR 35004
* cp-tree.h (struct full_lang_decl): Make tree_code bitfield 16
bits to allow for expansion of the number of middle end tree
codes.
2008-01-29 Douglas Gregor <doug.gregor@gmail.com>
PR c++/34055
...
...
gcc/cp/cp-tree.h
View file @
bdba2263
...
...
@@ -1655,11 +1655,11 @@ struct lang_decl GTY(())
{
/* In an overloaded operator, this is the value of
DECL_OVERLOADED_OPERATOR_P. */
ENUM_BITFIELD
(
tree_code
)
operator_code
:
8
;
ENUM_BITFIELD
(
tree_code
)
operator_code
:
16
;
unsigned
u3sel
:
1
;
unsigned
pending_inline_p
:
1
;
unsigned
spare
:
22
;
unsigned
spare
:
14
;
/* For a non-thunk function decl, this is a tree list of
friendly classes. For a thunk function decl, it is the
...
...
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