summaryrefslogtreecommitdiff
path: root/src/math/arm/fabs.c
AgeCommit message (Collapse)AuthorLines
2020-11-29arm fabs and sqrt: support single-precision-only fpu variantsJinliang Li-1/+1
2016-01-20replace armhf math asm source files with inline asmRich Felker-0/+15
this makes it possible to inline them with LTO, and is the simplest approach to eliminating the use of .sub files. this also makes VFP sqrt available for use with the standard EABI (plain arm rather than armhf subarch) when libc is built with -mfloat-abi=softfp. the same could have been done for fabs, but when the argument and return value are in integer registers, moving to VFP registers and back is almost certainly more costly than a simple integer operation.