C++: Fix comment.

This commit is contained in:
Mathias Vorreiter Pedersen
2023-08-11 11:50:50 +01:00
parent 3d5b1986c9
commit 88d3fcb34b

View File

@@ -169,7 +169,7 @@ private module SizeBarrier {
exists(int delta, int k |
state > k + delta and
// result <= "size of allocation" + delta + k
// <= "size of allocation" + state
// < "size of allocation" + state
result = getABarrierInstruction0(delta, k)
)
}
@@ -198,7 +198,7 @@ private module SizeBarrier {
state > k + delta
// so now we have:
// result <= "size of allocation" + delta + k
// <= "size of allocation" + state
// < "size of allocation" + state
)
}
}