[PATCH] D12840: [cfe-dev] Enabling ThreadSanitizer on PPC64(BE/LE) plarforms

Simone via cfe-commits cfe-commits at lists.llvm.org
Tue Sep 15 12:29:27 PDT 2015


simoatze updated this revision to Diff 34830.
simoatze added a comment.

Ignore previous update.


http://reviews.llvm.org/D12840

Files:
  lib/Driver/ToolChains.cpp

Index: lib/Driver/ToolChains.cpp
===================================================================
--- lib/Driver/ToolChains.cpp
+++ lib/Driver/ToolChains.cpp
@@ -3759,7 +3759,7 @@
     Res |= SanitizerKind::DataFlow;
   if (IsX86_64 || IsMIPS64)
     Res |= SanitizerKind::Leak;
-  if (IsX86_64 || IsMIPS64 || IsAArch64)
+  if (IsX86_64 || IsMIPS64 || IsAArch64 || IsPowerPC64)
     Res |= SanitizerKind::Thread;
   if (IsX86_64 || IsMIPS64 || IsPowerPC64)
     Res |= SanitizerKind::Memory;


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12840.34830.patch
Type: text/x-patch
Size: 495 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20150915/1a405fc1/attachment.bin>


More information about the cfe-commits mailing list