Shared: remove old stateful outBarrier check

This commit is contained in:
Asger F
2024-01-25 14:27:54 +01:00
parent ddbacc3d4a
commit d1310c74fc

View File

@@ -3773,14 +3773,11 @@ module MakeImpl<InputSig Lang> {
}
override PathNodeImpl getASuccessorImpl() {
not outBarrier(node, state) and
(
// an intermediate step to another intermediate node
result = this.getSuccMid()
or
// a final step to a sink
result = this.getSuccMid().projectToSink()
)
// an intermediate step to another intermediate node
result = this.getSuccMid()
or
// a final step to a sink
result = this.getSuccMid().projectToSink()
}
override predicate isSource() {