summaryrefslogtreecommitdiffstats
path: root/lib/builtins/clear_cache.c
diff options
context:
space:
mode:
authordim <dim@FreeBSD.org>2015-02-22 22:43:40 +0000
committerdim <dim@FreeBSD.org>2015-02-22 22:43:40 +0000
commitd423c65af723ebf09d0356d1833a035e7c6e7aad (patch)
treefbdacaec253cc5ceee88cb44de5545fa32c8bd67 /lib/builtins/clear_cache.c
parent5c652b16dfa55fef6d0953359e6e8f6933ee3a0f (diff)
downloadFreeBSD-src-d423c65af723ebf09d0356d1833a035e7c6e7aad.zip
FreeBSD-src-d423c65af723ebf09d0356d1833a035e7c6e7aad.tar.gz
Import compiler-rt trunk r230183.
https://llvm.org/svn/llvm-project/compiler-rt/trunk@230183
Diffstat (limited to 'lib/builtins/clear_cache.c')
-rw-r--r--lib/builtins/clear_cache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/builtins/clear_cache.c b/lib/builtins/clear_cache.c
index 61b1e9b..8dc0fb1 100644
--- a/lib/builtins/clear_cache.c
+++ b/lib/builtins/clear_cache.c
@@ -22,10 +22,10 @@
#include <machine/sysarch.h>
#endif
-#if defined(__ANDROID__) && defined(__mips__)
+#if defined(__mips__)
#include <sys/cachectl.h>
#include <sys/syscall.h>
- #ifdef __LP64__
+ #if defined(__ANDROID__) && defined(__LP64__)
/*
* clear_mips_cache - Invalidates instruction cache for Mips.
*/
@@ -109,10 +109,10 @@ void __clear_cache(void *start, void *end) {
#else
compilerrt_abort();
#endif
-#elif defined(__ANDROID__) && defined(__mips__)
+#elif defined(__mips__)
const uintptr_t start_int = (uintptr_t) start;
const uintptr_t end_int = (uintptr_t) end;
- #ifdef __LP64__
+ #if defined(__ANDROID__) && defined(__LP64__)
// Call synci implementation for short address range.
const uintptr_t address_range_limit = 256;
if ((end_int - start_int) <= address_range_limit) {
OpenPOWER on IntegriCloud