From dffd3c58389103d6ee712fac6544217c00c1f315 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Fri, 3 Apr 2015 13:37:18 -0700 Subject: [PATCH] Try again to fix clang build. I got the condition the wrong way round in the previous change. Bug: http://b/20065774 Change-Id: I218b224b37f5fb2f7c7ec2f9af27472b340c4b15 --- libc/arch-arm64/bionic/libgcc_compat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/arch-arm64/bionic/libgcc_compat.c b/libc/arch-arm64/bionic/libgcc_compat.c index 904cc16af2e..2dae3f552b3 100644 --- a/libc/arch-arm64/bionic/libgcc_compat.c +++ b/libc/arch-arm64/bionic/libgcc_compat.c @@ -1,6 +1,6 @@ /* STOPSHIP: remove this once the flounder blobs have been rebuilt (http://b/20065774). */ -#if defined(__clang__) +#if !defined(__clang__) extern void __clear_cache(char*, char*); extern char _Unwind_Backtrace;