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
0556f003
Commit
0556f003
authored
Apr 29, 2011
by
Christoph Mallon
Browse files
Add simple transfer function for Confirm in fp-vrp.
parent
6f333e27
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/fp-vrp.c
View file @
0556f003
...
...
@@ -258,6 +258,15 @@ result_unknown_X:
break
;
}
case
iro_Confirm
:
{
ir_node
*
const
v
=
get_Confirm_value
(
irn
);
bitinfo
*
const
b
=
get_bitinfo
(
v
);
/* TODO Use bound and relation. */
z
=
b
->
z
;
o
=
b
->
o
;
break
;
}
case
iro_Shl
:
{
bitinfo
*
const
l
=
get_bitinfo
(
get_Shl_left
(
irn
));
bitinfo
*
const
r
=
get_bitinfo
(
get_Shl_right
(
irn
));
...
...
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