diff options
author | Roland McGrath <roland@gnu.org> | 2006-02-22 02:09:08 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-02-22 02:09:08 +0000 |
commit | 7d9324612451215ac6402b2d9e73d29b33a0820b (patch) | |
tree | 84a2a1a964b7e0f5e06881257f70ad740f361aec /elf/sofini.c | |
parent | 7aaa17343dc759012322ac3e23b1aaad9afa81f7 (diff) | |
download | glibc-7d9324612451215ac6402b2d9e73d29b33a0820b.tar.gz glibc-7d9324612451215ac6402b2d9e73d29b33a0820b.tar.xz glibc-7d9324612451215ac6402b2d9e73d29b33a0820b.zip |
* configure.in (libc_cv_gcc_dwarf2_unwind_info): Delete.
(HAVE_DWARF2_UNWIND_INFO{,_STATIC}): Remove AC_DEFINEs. * configure: Regenerate. * config.h.in (HAVE_DWARF2_UNWIND_INFO{,_STATIC}): Remove undefs. * elf/soinit.c: Don't include gccframe.h. (__EH_FRAME_BEGIN__): Define unconditionally. (__register_frame_info, __deregister_frame_info) (__register_frame_info_bases, __deregister_frame_info_bases) (__register_frame, __deregister_frame): Remove declarations. (__libc_global_ctors, __libc_fini): Don't call registry functions. * elf/sofini.c (__EH_FRAME_END__): Define unconditionally.
Diffstat (limited to 'elf/sofini.c')
-rw-r--r-- | elf/sofini.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/elf/sofini.c b/elf/sofini.c index 16e77e72ad..55b9b1f081 100644 --- a/elf/sofini.c +++ b/elf/sofini.c @@ -8,7 +8,6 @@ static void (*const __DTOR_END__[1]) (void) __attribute__ ((used, section (".dtors"))) = { 0 }; -#ifdef HAVE_DWARF2_UNWIND_INFO /* Terminate the frame unwind info section with a 4byte 0 as a sentinel; this would be the 'length' field in a real FDE. */ @@ -16,4 +15,3 @@ typedef unsigned int ui32 __attribute__ ((mode (SI))); static ui32 __FRAME_END__[1] __attribute__ ((used, section (".eh_frame"))) = { 0 }; -#endif |