[PATCH] [MSan][Clang][MIPS] Enabled memory, dataflow and thread options for MIPS platform

Mohit Bhakkad mohit.bhakkad at gmail.com
Mon Feb 23 01:34:45 PST 2015


REPOSITORY
  rL LLVM

http://reviews.llvm.org/D6147

Files:
  cfe/trunk/lib/Driver/SanitizerArgs.cpp

Index: cfe/trunk/lib/Driver/SanitizerArgs.cpp
===================================================================
--- cfe/trunk/lib/Driver/SanitizerArgs.cpp
+++ cfe/trunk/lib/Driver/SanitizerArgs.cpp
@@ -128,7 +128,7 @@
   if (!(IsLinux && (IsX86_64 || IsMIPS64))) {
     Unsupported |= Memory | DataFlow;
   }
-  if (!((IsLinux || IsFreeBSD) && IsX86_64)) {
+  if (!((IsLinux || IsFreeBSD) && (IsX86_64 || IsMIPS64))) {
     Unsupported |= Thread;
   }
   if (!(IsLinux && (IsX86 || IsX86_64))) {

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D6147.20493.patch
Type: text/x-patch
Size: 498 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150223/aa68a83a/attachment.bin>


More information about the llvm-commits mailing list