mirror of https://git.musl-libc.org/git/musl
Browse Source
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.rs-1.0
9 changed files with 14 additions and 15 deletions
@ -1 +1 @@ |
|||
typedef unsigned long long jmp_buf[32]; |
|||
typedef unsigned long long __jmp_buf[32]; |
|||
|
|||
@ -1 +1 @@ |
|||
typedef unsigned long jmp_buf[6]; |
|||
typedef unsigned long __jmp_buf[6]; |
|||
|
|||
@ -1 +1 @@ |
|||
typedef unsigned long jmp_buf[18]; |
|||
typedef unsigned long __jmp_buf[18]; |
|||
|
|||
@ -1 +1 @@ |
|||
typedef unsigned long long jmp_buf [15]; |
|||
typedef unsigned long long __jmp_buf[15]; |
|||
|
|||
@ -1 +1 @@ |
|||
typedef unsigned long long jmp_buf [56]; |
|||
typedef unsigned long long __jmp_buf[56]; |
|||
|
|||
@ -1 +1 @@ |
|||
typedef unsigned long jmp_buf[8]; |
|||
typedef unsigned long __jmp_buf[8]; |
|||
|
|||
Loading…
Reference in new issue