diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-11-23 14:30:58 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-11-23 14:30:58 -0500 |
commit | a50136dfe186a3ea3d78a4264187915ad16ab861 (patch) | |
tree | bdee28a332ff45d9598ad317476f265ac55b481d /arch | |
parent | 0375c68fe7ed39b1173b62574936152645624078 (diff) | |
download | musl-a50136dfe186a3ea3d78a4264187915ad16ab861.tar.gz musl-a50136dfe186a3ea3d78a4264187915ad16ab861.tar.xz musl-a50136dfe186a3ea3d78a4264187915ad16ab861.zip |
fix powerpc setjmp/longjmp to save/restore float regs; enlarge/align jmp_buf
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/bits/setjmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/bits/setjmp.h b/arch/powerpc/bits/setjmp.h index a4baec4c..ab583aba 100644 --- a/arch/powerpc/bits/setjmp.h +++ b/arch/powerpc/bits/setjmp.h @@ -1 +1 @@ -typedef unsigned long jmp_buf [64]; +typedef unsigned long long jmp_buf [56]; |