Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
72a50045
Commit
72a50045
authored
Sep 21, 2011
by
Matthias Braun
Browse files
respect ir_dump_flag_loop
(a recent commit broke it)
parent
c970f067
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ir/irdump.c
View file @
72a50045
...
...
@@ -1608,7 +1608,8 @@ static void dump_block_graph(FILE *F, ir_graph *irg)
dump_ir_edges
(
node
,
F
);
}
if
(
is_irg_state
(
irg
,
IR_GRAPH_STATE_CONSISTENT_LOOPINFO
))
if
((
flags
&
ir_dump_flag_loops
)
&&
is_irg_state
(
irg
,
IR_GRAPH_STATE_CONSISTENT_LOOPINFO
))
dump_loop_nodes_into_graph
(
F
,
irg
);
current_ir_graph
=
rem
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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