-
Notifications
You must be signed in to change notification settings - Fork 1.8k
CPP: Add side effect models for strcpy and strcat. #3089
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
Conversation
The test failure is a true positive we lost when we switched to IR-based value numbering. |
Thanks - yes, it looks like a good change and nice surprise! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Otherwise LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing overrides
I'm afraid there's a conflict in test output now. |
Merged in master, fixed conflicts (which were limited to the |
The tests can be re-triggered and should pass when #3162 is merged. |
Add
SideEffectFunction
models forstrcpy
andstrcat
. This turned out not to be important for the issue I was looking at, but we might as well keep the models.