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
6ce7d764
Commit
6ce7d764
authored
Mar 14, 2014
by
Matthias Braun
Browse files
add missing confirm_irg_properties to lower_CopyB
parent
c77ef4a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/lower/lower_copyb.c
View file @
6ce7d764
...
...
@@ -201,9 +201,13 @@ void lower_CopyB(ir_graph *irg, unsigned max_small_sz, unsigned min_large_sz,
INIT_LIST_HEAD
(
&
env
.
list
);
irg_walk_graph
(
irg
,
NULL
,
find_copyb_nodes
,
&
env
);
bool
changed
=
false
;
list_for_each_entry
(
entry_t
,
entry
,
&
env
.
list
,
list
)
{
lower_copyb_node
(
entry
->
copyb
);
changed
=
true
;
}
confirm_irg_properties
(
irg
,
changed
?
IR_GRAPH_PROPERTIES_CONTROL_FLOW
:
IR_GRAPH_PROPERTIES_ALL
);
obstack_free
(
&
env
.
obst
,
NULL
);
}
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