Summary: Providing fuzzer sanitizer support for FreeBSD (but only for X86/64 architectures).
Reviewers: kimgr, EricWF, martell
Reviewed By: martell
Patch by David CARLIER.
Subscribers: krytarowski, kimgr, emaste, cfe-commits
Differential Revision: https://reviews.llvm.org/D41809
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@322469
91177308-0d34-0410-b5e6-
96231b3b80d8
}
if (IsX86 || IsX86_64) {
Res |= SanitizerKind::SafeStack;
+ Res |= SanitizerKind::Fuzzer;
+ Res |= SanitizerKind::FuzzerNoLink;
}
return Res;
}