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
0700370d
Commit
0700370d
authored
Oct 06, 2015
by
Matthias Braun
Browse files
Fix mul/div opt not triggering when we have Projs on both sides
parent
57e10dc3
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/iropt.c
View file @
0700370d
...
...
@@ -3869,7 +3869,8 @@ static ir_node *transform_node_Mul(ir_node *n)
goto
transform_div_mul
;
}
}
}
else
if
(
is_Proj
(
b
))
{
}
if
(
is_Proj
(
b
))
{
div_proj
=
b
;
div
=
get_Proj_pred
(
div_proj
);
if
(
is_Div
(
div
))
{
...
...
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