summaryrefslogtreecommitdiff
path: root/sigchainlib
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2020-02-12 10:52:22 +0000
committerTreehugger Robot <treehugger-gerrit@google.com>2020-02-20 07:15:30 +0000
commitbe0d3cff84c69c497487d39c4022d604a7907d5b (patch)
tree15364a8eb252f9645bb1cf3f9fe9d2017f1ed5fa /sigchainlib
parent5945de03b6f6b35bcf6a575b2291e29ae7a2b1ee (diff)
Remove remaining MIPS support.
With the exception of dwarf support in libelffile. Test: aosp_taimen-userdebug boots. Test: m test-art-host-gtest Test: testrunner.py --host --optimizing Bug: 147346243 Change-Id: Ib25acbc98aa7f63ce49a7ed2f81a4a64d48eac39
Diffstat (limited to 'sigchainlib')
-rw-r--r--sigchainlib/sigchain.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sigchainlib/sigchain.cc b/sigchainlib/sigchain.cc
index 76027f54bb..f58fe213b3 100644
--- a/sigchainlib/sigchain.cc
+++ b/sigchainlib/sigchain.cc
@@ -59,7 +59,7 @@
// doesn't have SA_RESTART, and raise the signal to avoid restarting syscalls that are
// expected to be interrupted?
-#if defined(__BIONIC__) && !defined(__LP64__) && !defined(__mips__)
+#if defined(__BIONIC__) && !defined(__LP64__)
static int sigismember(const sigset64_t* sigset, int signum) {
return sigismember64(sigset, signum);
}