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
34f6f169
Commit
34f6f169
authored
Apr 05, 2016
by
Christoph Mallon
Browse files
be: Use be_dump_yesno().
parent
75cac5c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/be/benode.c
View file @
34f6f169
...
...
@@ -577,7 +577,7 @@ static void dump_node(FILE *f, const ir_node *irn, dump_reason_t reason)
if
(
be_is_IncSP
(
irn
))
{
const
be_incsp_attr_t
*
a
=
(
const
be_incsp_attr_t
*
)
get_irn_generic_attr_const
(
irn
);
fprintf
(
f
,
"no_align: %s
\n
"
,
a
->
no_align
?
"true"
:
"false"
);
fprintf
(
f
,
"no_align: %s
\n
"
,
be_dump_yesno
(
a
->
no_align
)
);
fprintf
(
f
,
"offset: %d
\n
"
,
a
->
offset
);
}
else
if
(
be_is_MemPerm
(
irn
))
{
for
(
unsigned
i
=
0
;
i
<
be_get_MemPerm_entity_arity
(
irn
);
++
i
)
{
...
...
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