Skip to content
Snippets Groups Projects
Commit 37bfb6b2 authored by Adhemerval Zanella's avatar Adhemerval Zanella
Browse files

[sanitizers] Enable memory sanitizer on clang

This patch enables MSan for aarch64/linux


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@247808 91177308-0d34-0410-b5e6-96231b3b80d8
parent 142875b3
No related branches found
No related tags found
No related merge requests found
......@@ -3761,7 +3761,7 @@ SanitizerMask Linux::getSupportedSanitizers() const {
Res |= SanitizerKind::Leak;
if (IsX86_64 || IsMIPS64 || IsAArch64)
Res |= SanitizerKind::Thread;
if (IsX86_64 || IsMIPS64 || IsPowerPC64)
if (IsX86_64 || IsMIPS64 || IsPowerPC64 || IsAArch64)
Res |= SanitizerKind::Memory;
if (IsX86 || IsX86_64) {
Res |= SanitizerKind::Function;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment