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
7940cae4
Commit
7940cae4
authored
Aug 18, 2015
by
Jason Merrill
Committed by
Jason Merrill
Aug 18, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* print-tree.c (print_node): Handle TREE_BINFO.
From-SVN: r226994
parent
fc40eb75
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
gcc/ChangeLog
+4
-0
gcc/print-tree.c
+11
-0
No files found.
gcc/ChangeLog
View file @
7940cae4
2015
-
08
-
18
Jason
Merrill
<
jason
@
redhat
.
com
>
*
print
-
tree
.
c
(
print_node
):
Handle
TREE_BINFO
.
2015
-
08
-
18
Francois
-
Xavier
Coudert
<
fxcoudert
@
gcc
.
gnu
.
org
>
PR
middle
-
end
/
36757
...
...
gcc/print-tree.c
View file @
7940cae4
...
...
@@ -911,6 +911,17 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
indent
+
4
);
break
;
case
TREE_BINFO
:
fprintf
(
file
,
" bases %d"
,
vec_safe_length
(
BINFO_BASE_BINFOS
(
node
)));
print_node_brief
(
file
,
"offset"
,
BINFO_OFFSET
(
node
),
indent
+
4
);
print_node_brief
(
file
,
"virtuals"
,
BINFO_VIRTUALS
(
node
),
indent
+
4
);
print_node_brief
(
file
,
"inheritance chain"
,
BINFO_INHERITANCE_CHAIN
(
node
),
indent
+
4
);
break
;
default
:
if
(
EXCEPTIONAL_CLASS_P
(
node
))
lang_hooks
.
print_xnode
(
file
,
node
,
indent
);
...
...
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