-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Fix a few gcc warnings in jit #57744
Conversation
Tagging subscribers to this area: @JulieLeeMSFT Issue DetailsCleans up 1045 occurrences of warning from gcc debug build logs. Remaining one compiler warning related to 'bit field width overflow', which has 2565 occurrences, is tracked by #33541.
|
Some more details.. There is one occurrence of a warning from gas assembler 'Warning: ignoring changed section attributes for .rodata' and that is not related to gs_cookie (instead it's some intermediate assembly generated in /tmp; I'll investigate if there is anything actionable). All remaining 2564 warnings are in jit related to the same bit field width. |
I think the proper way to fix the range checks is to use the |
Thanks, wow didn't realize something like that exists. I will try |
@jakobbotsch, should we worry about other usages of |
I don't think so, |
Thanks! |
Fixes #57861
Cleans up 1045 occurrences of warning from gcc debug build logs. Remaining one compiler warning related to 'bit field width overflow', which has 2565 occurrences, is tracked by #33541.