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
37f26d64
Commit
37f26d64
authored
Aug 25, 1999
by
Mark Mitchell
Committed by
Mark Mitchell
Aug 25, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dump.c (dequeue_and_dump): Dump TARGET_EXPRs.
From-SVN: r28867
parent
36349f8b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
gcc/cp/ChangeLog
+4
-0
gcc/cp/dump.c
+14
-0
No files found.
gcc/cp/ChangeLog
View file @
37f26d64
1999-08-25 Mark Mitchell <mark@codesourcery.com>
* dump.c (dequeue_and_dump): Dump TARGET_EXPRs.
1999-08-25 Nathan Sidwell <nathan@acm.org>
* decl2.c (handle_class_head): Be graceful about additional
...
...
gcc/cp/dump.c
View file @
37f26d64
...
...
@@ -828,6 +828,20 @@ dequeue_and_dump (di)
dump_child
(
"stmt"
,
STMT_EXPR_STMT
(
t
));
break
;
case
TARGET_EXPR
:
if
(
dump_children_p
)
{
dump_child
(
"decl"
,
TREE_OPERAND
(
t
,
0
));
dump_child
(
"init"
,
TREE_OPERAND
(
t
,
1
));
dump_child
(
"clnp"
,
TREE_OPERAND
(
t
,
2
));
/* There really are two possible places the initializer can
be. After RTL expansion, the second operand is moved to
the position of the fourth operand, and the second
operand becomes NULL. */
dump_child
(
"init"
,
TREE_OPERAND
(
t
,
3
));
}
break
;
default
:
/* There are no additional fields to print. */
break
;
...
...
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