mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-14 17:11:06 +00:00
0ac5ae2335
libm is now somewhat integrated with gcc's -ffinite-math-only option and lots of the wrapper functions have been optimized.
17 lines
300 B
ArmAsm
17 lines
300 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: e_atan2f.S,v 1.1 1995/05/08 23:35:10 jtc Exp $")
|
|
|
|
ENTRY(__ieee754_atan2f)
|
|
flds 4(%esp)
|
|
flds 8(%esp)
|
|
fpatan
|
|
ret
|
|
END (__ieee754_atan2f)
|
|
strong_alias (__ieee754_atan2f, __atan2f_finite)
|