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
a53efda2
Commit
a53efda2
authored
21 years ago
by
Josef Zlomek
Committed by
Josef Zlomek
21 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2out.c (gen_field_die): Return if type of decl is error mark.
From-SVN: r68459
parent
0bd95603
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+4
-0
gcc/dwarf2out.c
+5
-1
No files found.
gcc/ChangeLog
View file @
a53efda2
2003-06-25 Josef Zlomek <zlomekj@suse.cz>
* dwarf2out.c (gen_field_die): Return if type of decl is error mark.
2003-06-25 Neil Booth <neil@daikokuya.co.uk>
* opts.c (common_handle_option): Add missing break;s.
...
...
This diff is collapsed.
Click to expand it.
gcc/dwarf2out.c
View file @
a53efda2
...
...
@@ -11405,8 +11405,12 @@ gen_field_die (decl, context_die)
tree
decl
;
dw_die_ref
context_die
;
{
dw_die_ref
decl_die
=
new_die
(
DW_TAG_member
,
context_die
,
decl
)
;
dw_die_ref
decl_die
;
if
(
TREE_TYPE
(
decl
)
==
error_mark_node
)
return
;
decl_die
=
new_die
(
DW_TAG_member
,
context_die
,
decl
);
add_name_and_src_coords_attributes
(
decl_die
,
decl
);
add_type_attribute
(
decl_die
,
member_declared_type
(
decl
),
TREE_READONLY
(
decl
),
TREE_THIS_VOLATILE
(
decl
),
...
...
This diff is collapsed.
Click to expand it.
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