[clang] [llvm] [Clang][Sanitizers] Add numerical sanitizer (PR #93783)
Alexander Shaposhnikov via cfe-commits
cfe-commits at lists.llvm.org
Thu May 30 02:05:17 PDT 2024
================
@@ -285,6 +285,9 @@ def SanitizeHWAddress : EnumAttr<"sanitize_hwaddress", [FnAttr]>;
/// MemTagSanitizer is on.
def SanitizeMemTag : EnumAttr<"sanitize_memtag", [FnAttr]>;
+/// NumericalStabilitySanitizer is on.
+def SanitizeNumericalStability : EnumAttr<"sanitize_numericalstability", [FnAttr]>;
----------------
alexander-shaposhnikov wrote:
yeah, it's already included into the first patch (https://github.com/llvm/llvm-project/pull/85916), duplicated here to unblock myself (Clang needs this in clang/lib/CodeGen/CGDeclCXX.cpp) (otherwise this PR would have a hard dependency on the first one)
https://github.com/llvm/llvm-project/pull/93783
More information about the cfe-commits
mailing list