Open taquangtrung opened 3 years ago
Ideally, yes. but again, this is a conservative case, since heap strong updates are not enabled by the underlying analysis.
Hi again,
I'm working on a flow-sensitive analysis technique. For this program, it is non-terminating due to the recursive call of foo
and bar
, and my analysis tool doesn't terminate as well. Could you advise if this test case can be fixed? E.g., by adding a base case to the recursive call?
Thank you!
Just done by adding a termination condition: e62267203ddcddbe8e1f4a5a6b866eff8f9e68c9
Hi,
For the two MAYALIAS in this test case, I think they should be NOALIAS?
This is because
c
and&b
are aliases, andb
,z1
,z2
are variables declared differently, hence&b
,&z1
,&z2
cannot be aliases?Could you advise if my understanding is correct?