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
054acdc3
Commit
054acdc3
authored
Nov 06, 2015
by
yb9976
Browse files
Remove superfluous if statement.
parent
04fb3c11
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/ana/constbits.c
View file @
054acdc3
...
...
@@ -313,11 +313,8 @@ result_unknown_X:
bitinfo
*
const
b_cfg
=
get_bitinfo_recursive
(
pred_block
);
if
(
b_cfg
->
z
!=
f
)
{
bitinfo
*
const
b
=
get_bitinfo_recursive
(
get_Phi_pred
(
irn
,
i
));
/* Only use input if it's not undefined. */
if
(
!
is_undefined
(
b
))
{
z
=
tarval_or
(
z
,
b
->
z
);
o
=
tarval_and
(
o
,
b
->
o
);
}
z
=
tarval_or
(
z
,
b
->
z
);
o
=
tarval_and
(
o
,
b
->
o
);
}
}
}
else
{
...
...
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