-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Non-terminating recursive call before assertions in cs_tests/recur10.c
#29
Comments
Yes, correct. I guess the reason might because the test case writer was not considering path sensitivity (branch conditions). I am changing the if condition to make it terminable. |
Thank you for the update! |
Hi, Do you have any updates for this test case? Is it possible to change the condition |
Added the base case: 60848d6 |
Thank you for the quick update! I also notice the same issue in
|
Done. dca7f8d |
Hi,
For this test case, the first recursive call to
f()
inside the body off
will be non-terminating.So, I wonder if it is OK to check alias information after this call?
Such assertions will never be reached anyway.
The text was updated successfully, but these errors were encountered: