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
7819c9ad
Commit
7819c9ad
authored
Mar 16, 2011
by
Andreas Zwinkau
Browse files
Adding some comments to ifconv.c
parent
02d62273
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/ifconv.c
View file @
7819c9ad
...
...
@@ -348,6 +348,7 @@ restart:
cond
,
projx0
,
projx1
));
/* remove critical edges */
env
->
changed
=
true
;
prepare_path
(
block
,
i
,
dependency
);
prepare_path
(
block
,
j
,
dependency
);
...
...
@@ -355,7 +356,7 @@ restart:
mux_block
=
get_nodes_block
(
cond
);
cond_dbg
=
get_irn_dbg_info
(
cond
);
do
{
do
{
/* generate Mux nodes in mux_block for Phis in block */
ir_node
*
val_i
=
get_irn_n
(
phi
,
i
);
ir_node
*
val_j
=
get_irn_n
(
phi
,
j
);
ir_node
*
mux
;
...
...
@@ -393,6 +394,7 @@ restart:
phi
=
next_phi
;
}
while
(
phi
!=
NULL
);
/* move mux operands into mux_block */
exchange
(
get_nodes_block
(
get_irn_n
(
block
,
i
)),
mux_block
);
exchange
(
get_nodes_block
(
get_irn_n
(
block
,
j
)),
mux_block
);
...
...
Write
Preview
Supports
Markdown
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