[compiler-rt] r300598 - Remove mips64 defines from darwin-specific file

Francis Ricci via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 18 14:05:09 PDT 2017


Author: fjricci
Date: Tue Apr 18 16:05:09 2017
New Revision: 300598

URL: http://llvm.org/viewvc/llvm-project?rev=300598&view=rev
Log:
Remove mips64 defines from darwin-specific file

Reviewers: kubamracek, alekseyshl

Subscribers: llvm-commits, arichardson

Differential Revision: https://reviews.llvm.org/D32183

Modified:
    compiler-rt/trunk/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc

Modified: compiler-rt/trunk/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc?rev=300598&r1=300597&r2=300598&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc Tue Apr 18 16:05:09 2017
@@ -14,7 +14,7 @@
 #include "sanitizer_platform.h"
 
 #if SANITIZER_MAC && (defined(__x86_64__) || defined(__aarch64__) || \
-                      defined(__mips64) || defined(__i386))
+                      defined(__i386))
 
 #include <mach/mach.h>
 
@@ -94,4 +94,4 @@ uptr SuspendedThreadsListMac::RegisterCo
 } // namespace __sanitizer
 
 #endif  // SANITIZER_MAC && (defined(__x86_64__) || defined(__aarch64__)) ||
-        //                   defined(__mips64) || defined(__i386))
+        //                   defined(__i386))




More information about the llvm-commits mailing list