Welcome to mirror list, hosted at ThFree Co, Russian Federation.

f_tan.S « i386 « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ae0431f4abdaf8bd3365d18d4b7422dab1b75a86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * ==================================================== 
 * Copyright (C) 1998 by Cygnus Solutions. All rights reserved. 
 *                      
 * Permission to use, copy, modify, and distribute this 
 * software is freely granted, provided that this notice
 * is preserved.             
 * ==================================================== 
 */             

/*
Fast version of tan using Intel float instructions.

   double _f_tan (double x);

Function calculates the tangent of x.
There is no error checking or setting of errno. 
*/

	#include "i386mach.h"

	.global SYM (_f_tan)
       SOTYPE_FUNCTION(_f_tan)

SYM (_f_tan):
	pushl ebp
	movl esp,ebp
	fldl 8(ebp)
	fptan
	fincstp

	leave
	ret