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
5e1677bc
Commit
5e1677bc
authored
Jan 02, 2000
by
Mark Mitchell
Committed by
Mark Mitchell
Jan 02, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree.h (BINFO_N_BASETYPES): New macro.
From-SVN: r31162
parent
0533d788
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
gcc/ChangeLog
+4
-0
gcc/tree.h
+4
-0
No files found.
gcc/ChangeLog
View file @
5e1677bc
2000
-
01
-
01
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
tree
.
h
(
BINFO_N_BASETYPES
)
:
New
macro
.
2000
-
01
-
01
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
expmed
.
c
(
emit_store_flag
)
:
Prevent
losing
a
pending
stack
...
...
gcc/tree.h
View file @
5e1677bc
...
...
@@ -1018,6 +1018,10 @@ struct tree_type
#define BINFO_BASETYPES(NODE) TREE_VEC_ELT ((NODE), 4)
#define TYPE_BINFO_BASETYPES(NODE) TREE_VEC_ELT (TYPE_BINFO (NODE), 4)
/* The number of basetypes for NODE. */
#define BINFO_N_BASETYPES(NODE) \
(BINFO_BASETYPES (NODE) ? TREE_VEC_LENGTH (BINFO_BASETYPES (NODE)) : 0)
/* Accessor macro to get to the Nth basetype of this basetype. */
#define BINFO_BASETYPE(NODE,N) TREE_VEC_ELT (BINFO_BASETYPES (NODE), (N))
#define TYPE_BINFO_BASETYPE(NODE,N) BINFO_TYPE (TREE_VEC_ELT (BINFO_BASETYPES (TYPE_BINFO (NODE)), (N)))
...
...
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