Patch by Simone Atzeni.
This enables the -fsanitize=thread flag for PPC64 and PPC64LE.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@255067
91177308-0d34-0410-b5e6-
96231b3b80d8
Res |= SanitizerKind::DataFlow;
if (IsX86_64 || IsMIPS64 || IsAArch64)
Res |= SanitizerKind::Leak;
- if (IsX86_64 || IsMIPS64 || IsAArch64)
+ if (IsX86_64 || IsMIPS64 || IsAArch64 || IsPowerPC64)
Res |= SanitizerKind::Thread;
if (IsX86_64 || IsMIPS64 || IsPowerPC64 || IsAArch64)
Res |= SanitizerKind::Memory;