fixes for host gcc 4.6.1
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / machine / i386 / f_atan2f.S
blob6df0c7539c3e455c67785d59387412fcb8b8f4ee
1 /*
2  * ====================================================
3  * Copyright (C) 1998, 2002 by Red Hat Inc. All rights reserved.
4  *
5  * Permission to use, copy, modify, and distribute this
6  * software is freely granted, provided that this notice
7  * is preserved.
8  * ====================================================
9  */
11 #if !defined(_SOFT_FLOAT)
14 Fast version of atan2f using Intel float instructions.
16    float _f_atan2f (float y, float x);
18 Function computes arctan ( y / x ).
19 There is no error checking or setting of errno.
22         #include "i386mach.h"
24         .global SYM (_f_atan2f)
25        SOTYPE_FUNCTION(_f_atan2f)
27 SYM (_f_atan2f):
28         pushl ebp
29         movl esp,ebp
30         flds 8(ebp)
31         flds 12(ebp)
32         fpatan
34         leave
35         ret
37 #endif