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
08ada326
Commit
08ada326
authored
Mar 07, 2010
by
Matthias Braun
Browse files
label start and end block in dumps
[r27264]
parent
c93f0877
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irdump.c
View file @
08ada326
...
...
@@ -853,8 +853,13 @@ int dump_node_opcode(FILE *F, ir_node *n)
fprintf
(
F
,
"%s"
,
get_irn_opname
(
n
));
break
;
case
iro_Block
:
fprintf
(
F
,
"%s%s%s"
,
is_Block_dead
(
n
)
?
"Dead "
:
""
,
get_irn_opname
(
n
),
if
(
is_Block_dead
(
n
))
fputs
(
"Dead "
,
F
);
if
(
n
==
get_irg_start_block
(
get_irn_irg
(
n
)))
fputs
(
"Start "
,
F
);
if
(
n
==
get_irg_end_block
(
get_irn_irg
(
n
)))
fputs
(
"End "
,
F
);
fprintf
(
F
,
"%s%s"
,
get_irn_opname
(
n
),
dump_block_marker
?
(
get_Block_mark
(
n
)
?
"*"
:
""
)
:
""
);
break
;
case
iro_Conv
:
...
...
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