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
f0d44932
Commit
f0d44932
authored
Mar 02, 2005
by
Michael Beck
Browse files
added missing parentesis
[r5277]
parent
56676a98
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/loop_unrolling.c
View file @
f0d44932
...
...
@@ -877,11 +877,11 @@ static void do_loop_unroll(ir_node *n, void *env)
if
((
cmp_typ
==
pn_Cmp_Le
||
cmp_typ
==
pn_Cmp_Ge
)
&&
(
iter_end
%
iter_increment
==
0
))
iter_number
++
;
if
(
iter_number
&
3
==
0
)
if
(
(
iter_number
&
3
)
==
0
)
unroll_factor
=
4
;
else
if
(
iter_number
%
3
==
0
)
else
if
(
(
iter_number
%
3
)
==
0
)
unroll_factor
=
3
;
else
if
(
iter_number
&
1
==
0
)
else
if
(
(
iter_number
&
1
)
==
0
)
unroll_factor
=
2
;
else
return
;
...
...
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