summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/clear_cache.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/lib/clear_cache.c')
-rw-r--r--compiler-rt/lib/clear_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/clear_cache.c b/compiler-rt/lib/clear_cache.c
index 1456823df20..ddc48bcc56e 100644
--- a/compiler-rt/lib/clear_cache.c
+++ b/compiler-rt/lib/clear_cache.c
@@ -33,7 +33,7 @@ void __clear_cache(void* start, void* end)
/* On Darwin, sys_icache_invalidate() provides this functionality */
sys_icache_invalidate(start, end-start);
#else
- abort();
+ compilerrt_abort();
#endif
#endif
}
OpenPOWER on IntegriCloud