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
297 B
ArmAsm
17 lines
297 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: e_atan2.S,v 1.4 1995/05/08 23:46:28 jtc Exp $")
|
|
|
|
ENTRY(__ieee754_atan2)
|
|
fldl 4(%esp)
|
|
fldl 12(%esp)
|
|
fpatan
|
|
ret
|
|
END (__ieee754_atan2)
|
|
strong_alias (__ieee754_atan2, __atan2_finite)
|