commit | 2e54c354784a45b12ca666c49d1821f55e0919d8 | [log] [tgz] |
---|---|---|
author | David Chisnall <[email protected]> | Fri May 09 01:35:32 2014 +0000 |
committer | Android Git Automerger <[email protected]> | Fri May 09 01:35:32 2014 +0000 |
tree | 86e5d1d5c7805792d458cda772bb3f250cb648d1 | |
parent | aa67cf36a9eb1c053d40e65254f1b78169c9f496 [diff] | |
parent | 3cce3d06624794badf16a1d0129b688e9e4bac45 [diff] |
am 3cce3d06: Fix some warnings. * commit '3cce3d06624794badf16a1d0129b688e9e4bac45': Fix some warnings.
diff --git a/src/cxa_finalize.c b/src/cxa_finalize.c index c02d70d..f0d1b8c 100644 --- a/src/cxa_finalize.c +++ b/src/cxa_finalize.c
@@ -24,9 +24,9 @@ void __cxa_finalize(void *d ); -extern void __dso_handle; +extern void *__dso_handle; -__attribute((destructor)) +__attribute__((__destructor__, __used__)) static void cleanup(void) { __cxa_finalize(&__dso_handle); }