1# In order to work around the very problems that force us to now generally
2# create a libgcc.so, glibc reexported a number of routines from libgcc.a.
3# By now choosing the same version tags for these specific routines, we
4# maintain enough binary compatibility to allow future versions of glibc
5# to defer implementation of these routines to libgcc.so via DT_AUXILIARY.
6
7%inherit GCC_3.0 GLIBC_2.0
8GLIBC_2.0 {
9  # Sampling of DImode arithmetic used by (at least) i386 and m68k.
10  __divdi3
11  __moddi3
12  __udivdi3
13  __umoddi3
14
15  # Exception handling support functions used by most everyone.
16  __register_frame
17  __register_frame_table
18  __deregister_frame
19  __register_frame_info
20  __deregister_frame_info
21  __frame_state_for
22  __register_frame_info_table
23}
24