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
Goal: get a whole project to compile with ASAN on
Currently known UB:
wrapper___ll_mul
cfe
wrapper___ll_lshift
z_en_ossan.c
The text was updated successfully, but these errors were encountered:
Fixed in #31
Sorry, something went wrong.
No branches or pull requests
Goal: get a whole project to compile with ASAN on
Currently known UB:
wrapper___ll_mul
will cause UB if multiplicands are too large (known to occur incfe
). Proposed solution: cast the multiplicands to unsigned first.wrapper___ll_lshift
will cause UB if shift is too large (occurs in OoTz_en_ossan.c
)The text was updated successfully, but these errors were encountered: