mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
ce12fc7113
This was originally added to support binutils older than version 2.22: <https://sourceware.org/ml/libc-alpha/2010-12/msg00051.html> Since 2.22 is older than the minimum required binutils version for building glibc, we no longer need this. (The changes do not impact the statically linked startup code.)
8 lines
278 B
C
8 lines
278 B
C
/* Terminate the frame unwind info section with a 4byte 0 as a sentinel;
|
|
this would be the 'length' field in a real FDE. */
|
|
|
|
typedef unsigned int ui32 __attribute__ ((mode (SI)));
|
|
static const ui32 __FRAME_END__[1]
|
|
__attribute__ ((used, section (".eh_frame")))
|
|
= { 0 };
|