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
b7af73a7
Commit
b7af73a7
authored
Sep 04, 2014
by
Aldy Hernandez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make output_die() output the parent DIE for each DIE.
From-SVN: r214908
parent
c9fd354a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gcc/dwarf2out.c
+3
-2
No files found.
gcc/dwarf2out.c
View file @
b7af73a7
...
@@ -8703,9 +8703,10 @@ output_die (dw_die_ref die)
...
@@ -8703,9 +8703,10 @@ output_die (dw_die_ref die)
if
(
!
die
->
comdat_type_p
&&
die
->
die_id
.
die_symbol
)
if
(
!
die
->
comdat_type_p
&&
die
->
die_id
.
die_symbol
)
output_die_symbol
(
die
);
output_die_symbol
(
die
);
dw2_asm_output_data_uleb128
(
die
->
die_abbrev
,
"(DIE (%#lx) %s)"
,
dw2_asm_output_data_uleb128
(
die
->
die_abbrev
,
"(DIE (%#lx) %s
(parent DIE=%#lx)
)"
,
(
unsigned
long
)
die
->
die_offset
,
(
unsigned
long
)
die
->
die_offset
,
dwarf_tag_name
(
die
->
die_tag
));
dwarf_tag_name
(
die
->
die_tag
),
die
->
die_parent
?
die
->
die_parent
->
die_offset
:
0
);
FOR_EACH_VEC_SAFE_ELT
(
die
->
die_attr
,
ix
,
a
)
FOR_EACH_VEC_SAFE_ELT
(
die
->
die_attr
,
ix
,
a
)
{
{
...
...
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