From 55735a75f1e26e5a4c8d2568d1509dc6f0b84575 Mon Sep 17 00:00:00 2001 From: Francis Ricci Date: Tue, 18 Apr 2017 21:05:09 +0000 Subject: [PATCH] Remove mips64 defines from darwin-specific file Reviewers: kubamracek, alekseyshl Subscribers: llvm-commits, arichardson Differential Revision: https://reviews.llvm.org/D32183 llvm-svn: 300598 --- compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc b/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc index f65065e..70625a9 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc @@ -14,7 +14,7 @@ #include "sanitizer_platform.h" #if SANITIZER_MAC && (defined(__x86_64__) || defined(__aarch64__) || \ - defined(__mips64) || defined(__i386)) + defined(__i386)) #include @@ -94,4 +94,4 @@ uptr SuspendedThreadsListMac::RegisterCount() const { } // namespace __sanitizer #endif // SANITIZER_MAC && (defined(__x86_64__) || defined(__aarch64__)) || - // defined(__mips64) || defined(__i386)) + // defined(__i386)) -- 2.7.4