mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 04:23:41 +01:00
20 lines
336 B
ArmAsm
20 lines
336 B
ArmAsm
/*
|
|
* Written by:
|
|
* J.T. Conklin (jtc@netbsd.org)
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <i387/bsd_asm.h>
|
|
//__FBSDID("$FreeBSD: src/lib/msun/i387/e_sqrt.S,v 1.10 2011/01/07 16:13:12 kib Exp $")
|
|
|
|
ENTRY(sqrt)
|
|
fldl 4(%esp)
|
|
fsqrt
|
|
ret
|
|
END(sqrt)
|
|
|
|
|
|
/* Enable stack protection */
|
|
#if defined(__ELF__)
|
|
.section .note.GNU-stack,"",%progbits
|
|
#endif
|