We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When accessing array elements, points-to analysis doesn't work correctly if the elements are accessed by index that changes, e.g. in a cycle:
for (i = 0; i < 10; i++) { A[i] = i; }
There is a problem with determining an offset within the array. Slicer can wrongly remove some statements because of this.
The text was updated successfully, but these errors were encountered:
If the index is a variable, offset will be 0 in "points to" analysis. It's imprecise.
Sorry, something went wrong.
No branches or pull requests
When accessing array elements, points-to analysis doesn't work correctly if the elements are accessed by index that changes, e.g. in a cycle:
There is a problem with determining an offset within the array. Slicer can wrongly remove some statements because of this.
The text was updated successfully, but these errors were encountered: