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
018479fb
Commit
018479fb
authored
Jul 14, 2004
by
Richard Henderson
Committed by
Richard Henderson
Jul 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* print-tree.c (print_node): Handle SSA_NAME.
From-SVN: r84729
parent
b5411fea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
0 deletions
+30
-0
gcc/ChangeLog
+4
-0
gcc/print-tree.c
+26
-0
No files found.
gcc/ChangeLog
View file @
018479fb
2004-07-14 Richard Henderson <rth@redhat.com>
* print-tree.c (print_node): Handle SSA_NAME.
2004-07-14 James E Wilson <wilson@specifixinc.com>
2004-07-14 James E Wilson <wilson@specifixinc.com>
PR target/16325
PR target/16325
...
...
gcc/print-tree.c
View file @
018479fb
...
@@ -731,6 +731,32 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
...
@@ -731,6 +731,32 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
BLOCK_ABSTRACT_ORIGIN
(
node
),
indent
+
4
);
BLOCK_ABSTRACT_ORIGIN
(
node
),
indent
+
4
);
break
;
break
;
case
SSA_NAME
:
print_node_brief
(
file
,
"var"
,
SSA_NAME_VAR
(
node
),
indent
+
4
);
print_node_brief
(
file
,
"def_stmt"
,
SSA_NAME_DEF_STMT
(
node
),
indent
+
4
);
indent_to
(
file
,
indent
+
4
);
fprintf
(
file
,
"version %u"
,
SSA_NAME_VERSION
(
node
));
if
(
SSA_NAME_OCCURS_IN_ABNORMAL_PHI
(
node
))
fprintf
(
file
,
" in-abnormal-phi"
);
if
(
SSA_NAME_IN_FREE_LIST
(
node
))
fprintf
(
file
,
" in-free-list"
);
if
(
SSA_NAME_PTR_INFO
(
node
)
||
SSA_NAME_VALUE
(
node
)
||
SSA_NAME_AUX
(
node
))
{
indent_to
(
file
,
indent
+
3
);
if
(
SSA_NAME_PTR_INFO
(
node
))
fprintf
(
file
,
" ptr-info %p"
,
SSA_NAME_PTR_INFO
(
node
));
if
(
SSA_NAME_VALUE
(
node
))
fprintf
(
file
,
" value %p"
,
SSA_NAME_VALUE
(
node
));
if
(
SSA_NAME_AUX
(
node
))
fprintf
(
file
,
" aux %p"
,
SSA_NAME_AUX
(
node
));
}
break
;
default
:
default
:
if
(
TREE_CODE_CLASS
(
TREE_CODE
(
node
))
==
'x'
)
if
(
TREE_CODE_CLASS
(
TREE_CODE
(
node
))
==
'x'
)
lang_hooks
.
print_xnode
(
file
,
node
,
indent
);
lang_hooks
.
print_xnode
(
file
,
node
,
indent
);
...
...
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