[compiler-rt] [sanitizers][windows] Add report on intercept fail to more Rtl* functions. (PR #163818)
Thurston Dang via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 16 11:12:05 PDT 2025
thurstond wrote:
> That way failed interceptions of these Rtl* functions will report a message with verbosity >= 1.
It looks like it is for `verbosity >=` **2**?
```
if (!__interception::OverrideFunction(fname, new_func, orig_old_func))
VPrintf(2, "Failed to override function %s\n", fname);
}
```
https://github.com/llvm/llvm-project/pull/163818
More information about the llvm-commits
mailing list