Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1112,10 +1112,13 @@ public boolean validateFixedPointState(BigBang bb) {
} else {
for (TypeFlow<?> use : getUses()) {
/*
* The type state of saturated flows is not updated anymore. FormalReceiverTypeFlow
* has a special update method.
* In the following cases, we cannot assume that the type state of the use is
* accurate: (1) disabled flows do not execute their on{Input|Observed}Saturated
* callbacks, so their state might not be up to date, (2) the type state of
* saturated flows is not updated anymore, (3) FormalReceiverTypeFlow has a special
* update method.
*/
if (use.isSaturated() || use instanceof FormalReceiverTypeFlow) {
if (!use.isFlowEnabled() || use.isSaturated() || use instanceof FormalReceiverTypeFlow) {
continue;
}
/*
Expand Down