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
e6d9804c
Commit
e6d9804c
authored
Oct 20, 1992
by
Tom Wood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(dwarfout_file_scope_decl): Generate DIEs for
built-in non-fundamental types. From-SVN: r2528
parent
59b2d722
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
gcc/dwarfout.c
+13
-4
No files found.
gcc/dwarfout.c
View file @
e6d9804c
...
...
@@ -3878,7 +3878,7 @@ output_type (type, containing_scope)
case
POINTER_TYPE
:
case
REFERENCE_TYPE
:
/* For these types, all that is required is that we output a DIE
(or a set of DIEs) to represent th
at
"basis" type. */
(or a set of DIEs) to represent th
e
"basis" type. */
output_type
(
TREE_TYPE
(
type
),
containing_scope
);
break
;
...
...
@@ -4774,9 +4774,18 @@ dwarfout_file_scope_decl (decl, set_finalizing)
break
;
case
TYPE_DECL
:
/* Don't generate any DIEs to represent the standard built-in types. */
if
(
DECL_SOURCE_LINE
(
decl
)
==
0
)
/* Don't bother trying to generate any DIEs to represent any of the
normal built-in types for the language we are compiling, except
in cases where the types in question are *not* DWARF fundamental
types. We make an exception in the case of non-fundamental types
for the sake of objective C (and perhaps C++) because the GNU
front-ends for these languages may in fact create certain "built-in"
types which are (for example) RECORD_TYPEs. In such cases, we
really need to output these (non-fundamental) types because other
DIEs may contain references to them. */
if
(
DECL_SOURCE_LINE
(
decl
)
==
0
&&
type_is_fundamental
(
TREE_TYPE
(
decl
)))
return
;
/* If we are in terse mode, don't generate any DIEs to represent
...
...
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