repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git]
/
lib
/
libm
/
arch
/
i387
/
e_atan2.S
blob
8021a36af36c189502c9cbbecadb93d4a8a361a8
1
/*
2
* Written by J.T. Conklin <jtc@NetBSD.org>.
3
* Public domain.
4
*/
5
6
#include <machine/asm.h>
7
8
#include "abi.h"
9
10
RCSID("$NetBSD: e_atan2.S,v 1.5 2001/06/19 00:26:29 fvdl Exp $")
11
12
ENTRY(__ieee754_atan2)
13
XMM_TWO_ARG_DOUBLE_PROLOGUE
14
fldl ARG_DOUBLE_ONE
15
fldl ARG_DOUBLE_TWO
16
fpatan
17
XMM_DOUBLE_EPILOGUE
18
ret