[clang] [llvm] [Clang][Sanitizers] Add numerical sanitizer (PR #93783)
Alexander Shaposhnikov via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 6 11:20:13 PDT 2024
================
@@ -826,6 +826,10 @@ SanitizerMask Linux::getSupportedSanitizers() const {
if (IsX86_64 || IsAArch64) {
Res |= SanitizerKind::KernelHWAddress;
}
+ if (IsX86_64) {
+ Res |= SanitizerKind::NumericalStability;
----------------
alexander-shaposhnikov wrote:
Done
https://github.com/llvm/llvm-project/pull/93783
More information about the cfe-commits
mailing list