commit | dffd3c58389103d6ee712fac6544217c00c1f315 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Fri Apr 03 13:37:18 2015 -0700 |
committer | Elliott Hughes <enh@google.com> | Fri Apr 03 13:37:18 2015 -0700 |
tree | b2c977a1277b2bcc93224c5800cdd904ae2859db | |
parent | ec8b3a7dde3c282c4f9ca5c8bf5a7e1b7469def0 [diff] [blame] |
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
diff --git a/libc/arch-arm64/bionic/libgcc_compat.c b/libc/arch-arm64/bionic/libgcc_compat.c index 904cc16..2dae3f5 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;