summaryrefslogtreecommitdiff
path: root/src/setjmp/mips-sf
AgeCommit message (Collapse)AuthorLines
2016-01-20switch sh and mips setjmp asm from .sub system to .S filesRich Felker-52/+0
2014-02-24mips: add mips-sf subarch support (soft-float)Szabolcs Nagy-0/+52
Userspace emulated floating-point (gcc -msoft-float) is not compatible with the default mips abi (assumes an FPU or in kernel emulation of it). Soft vs hard float abi should not be mixed, __mips_soft_float is checked in musl's configure script and there is no runtime check. The -sf subarch does not save/restore floating-point registers in setjmp/longjmp and only provides dummy fenv implementation.