mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-10 16:42:59 +03:00
9693501c15
this is necessary to meet the C++ ABI target. alternatives were considered to avoid the size increase for non-sig jmp_buf objects, but they seemed to have worse properties. moreover, the relative size increase is only extreme on x86[_64]; one way of interpreting this is that, if the size increase from this patch makes jmp_buf use too much memory, then the program was already using too much memory when built for non-x86 archs.
2 lines
36 B
C
2 lines
36 B
C
typedef unsigned long __jmp_buf[6];
|