bionic/libc/arch-x86/bionic/libgcc_compat.c
Christopher Ferris 6869d26ad9 Force export symbols on all x86 variants in libc.
For silvermont, the __popcountsi2 symbol does not get exported by libc.
But for atom, this symbol is exported. Since we already exported this symbol
for previous releases, it's better to just follow through and force
the export, but only for 32 bit. x86 64 bit will not export this symbol.

Bug: 17681440

(cherry picked from commit d11eac3455)

Change-Id: I93704c721d98d569922f606f214069bda24872ba
2014-10-06 16:41:46 -07:00

16 lines
286 B
C

/* Generated by genlibgcc_compat.py */
extern char __divdi3;
extern char __moddi3;
extern char __popcountsi2;
extern char __udivdi3;
extern char __umoddi3;
void* __bionic_libgcc_compat_symbols[] = {
&__divdi3,
&__moddi3,
&__popcountsi2,
&__udivdi3,
&__umoddi3,
};