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
73336222
Commit
73336222
authored
Aug 29, 2014
by
Manuel Mohr
Browse files
Parallelize mem requires dominance.
parent
d314dade
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/parallelize_mem.c
View file @
73336222
...
...
@@ -464,7 +464,8 @@ static void eliminate_sync_edges(ir_graph *irg)
void
opt_parallelize_mem
(
ir_graph
*
irg
)
{
assure_irg_properties
(
irg
,
IR_GRAPH_PROPERTY_CONSISTENT_OUT_EDGES
);
assure_irg_properties
(
irg
,
IR_GRAPH_PROPERTY_CONSISTENT_OUT_EDGES
|
IR_GRAPH_PROPERTY_CONSISTENT_DOMINANCE
);
irg_walk_blkwise_dom_top_down
(
irg
,
NULL
,
walker
,
NULL
);
eliminate_sync_edges
(
irg
);
confirm_irg_properties
(
irg
,
IR_GRAPH_PROPERTIES_CONTROL_FLOW
);
...
...
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