Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
de18eba2
Commit
de18eba2
authored
Jul 27, 2015
by
Christoph Mallon
Browse files
be: Only exclude ANY and T nodes from having their mode dumped.
parent
baf5b832
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/benode.c
View file @
de18eba2
...
...
@@ -553,10 +553,12 @@ static void dump_node(FILE *f, const ir_node *irn, dump_reason_t reason)
case
dump_node_opcode_txt
:
fputs
(
get_irn_opname
(
irn
),
f
);
break
;
case
dump_node_mode_txt
:
if
(
be_is_Copy
(
irn
)
||
be_is_CopyKeep
(
irn
))
fprintf
(
f
,
"%s"
,
get_mode_name
(
get_irn_mode
(
irn
)));
case
dump_node_mode_txt
:
{
ir_mode
*
const
mode
=
get_irn_mode
(
irn
);
if
(
mode
!=
mode_ANY
&&
mode
!=
mode_T
)
fprintf
(
f
,
"%s"
,
get_mode_name
(
mode
));
break
;
}
case
dump_node_nodeattr_txt
:
if
(
be_is_IncSP
(
irn
))
{
const
be_incsp_attr_t
*
attr
...
...
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