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
de6e505e
Commit
de6e505e
authored
Nov 23, 1999
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert AT_containing_type change
From-SVN: r30639
parent
c29f60c0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
gcc/ChangeLog
+0
-2
gcc/dwarf2out.c
+3
-6
No files found.
gcc/ChangeLog
View file @
de6e505e
...
...
@@ -53,8 +53,6 @@ Mon Nov 22 22:58:01 1999 "R. Kelley Cook" <KelleyCook@attglobal.net>
(
reverse_die_lists
)
:
New
fn
.
(
add_sibling_attributes
)
:
Use
it
.
(
push_decl_scope
)
:
Reorganize
.
(
gen_struct_or_union_type_die
)
:
Don
'
t
add
a
DW_AT_containing_type
that
points
to
ourself
.
(
add_name_and_src_coords_attributes
)
:
Don
'
t
set
file
and
line
for
an
artificial
decl
.
(
gen_subprogram_die
)
:
An
artificial
function
doesn
'
t
need
to
match
...
...
gcc/dwarf2out.c
View file @
de6e505e
...
...
@@ -8935,12 +8935,9 @@ gen_struct_or_union_type_die (type, context_die)
{
tree
vtype
=
DECL_FCONTEXT
(
TYPE_VFIELD
(
type
));
if
(
vtype
!=
type
)
{
gen_type_die
(
vtype
,
context_die
);
add_AT_die_ref
(
type_die
,
DW_AT_containing_type
,
lookup_type_die
(
vtype
));
}
gen_type_die
(
vtype
,
context_die
);
add_AT_die_ref
(
type_die
,
DW_AT_containing_type
,
lookup_type_die
(
vtype
));
}
}
else
...
...
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