blob: 904cc16af2e07db97e5fabf761a046b6eea06749 [file] [log] [blame]
Elliott Hughes76e1cbc2015-04-03 11:27:53 -07001/* STOPSHIP: remove this once the flounder blobs have been rebuilt (http://b/20065774). */
2
Elliott Hughes0975a5d2015-04-03 13:09:10 -07003#if defined(__clang__)
4
Elliott Hughes76e1cbc2015-04-03 11:27:53 -07005extern void __clear_cache(char*, char*);
6extern char _Unwind_Backtrace;
7extern char _Unwind_GetIP;
8
9void* __bionic_libgcc_compat_symbols[] = {
10 &__clear_cache,
11 &_Unwind_Backtrace,
12 &_Unwind_GetIP,
13};
Elliott Hughes0975a5d2015-04-03 13:09:10 -070014
15#endif