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
We should either emit an error or perform the computation on the address part.
For example https://cheri-compiler-explorer.cl.cam.ac.uk/z/fj58sb:
#include <stdlib.h> __intcap test(__intcap a, __intcap b) { __intcap ret; if (__builtin_add_overflow(a, b, &ret)) abort(); return ret; }
The text was updated successfully, but these errors were encountered:
[libc++][charconv] Allow using it with __intcap
d7d8cc8
This requires silencing a warning and explicitly casting in __mul_overflowed to work around the crash encountered in #720
fae6717
This requires silencing a warning and explicitly casting in __mul_overflowed to work around the crash encountered in CTSRD-CHERI/llvm-project#720
No branches or pull requests
We should either emit an error or perform the computation on the address part.
For example https://cheri-compiler-explorer.cl.cam.ac.uk/z/fj58sb:
The text was updated successfully, but these errors were encountered: