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
fd21db77
Commit
fd21db77
authored
Apr 12, 2010
by
Christoph Mallon
Browse files
Correct bug in Mux-case of fixpoint VRP: This z must be an o.
[r27383]
parent
854e2559
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/opt/fp-vrp.c
View file @
fd21db77
...
...
@@ -438,7 +438,7 @@ result_unknown_X:
o
=
f
->
o
;
}
else
{
z
=
tarval_or
(
f
->
z
,
t
->
z
);
z
=
tarval_and
(
f
->
o
,
t
->
o
);
o
=
tarval_and
(
f
->
o
,
t
->
o
);
}
}
...
...
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