-
Notifications
You must be signed in to change notification settings - Fork 128
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
Silence one more gcc false-positive. #814
Conversation
gcc 13 has false positives around array-bounds and stringop-overflow, so suppress them here while generating test cases. Signed-off-by: Chris Lalancette <[email protected]>
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.
Seems like fine changes for a test file.
#813 seems to have the -Warray-bounds
warning. What does the -Wstringop-overflow
warning look like?
Yeah, good question. Sometimes we get one, and sometimes we get both. In this case, the stringop warning is similar and looks like:
|
gcc 13 has false positives around array-bounds and stringop-overflow, so suppress them here while generating test cases. Signed-off-by: Chris Lalancette <[email protected]>
https://github.com/Mergifyio backport jazzy |
✅ Backports have been created
|
gcc 13 has false positives around array-bounds and stringop-overflow, so suppress them here while generating test cases. Signed-off-by: Chris Lalancette <[email protected]> (cherry picked from commit 86fa398)
gcc 13 has false positives around array-bounds and stringop-overflow, so suppress them here while generating test cases. Signed-off-by: Chris Lalancette <[email protected]> (cherry picked from commit 86fa398) Co-authored-by: Chris Lalancette <[email protected]>
gcc 13 has false positives around array-bounds and stringop-overflow, so suppress them here while generating test cases.
@Crola1702 FYI, this should fix #813